Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Posts posted by pulpfiction

  1. The name in the href should match the ID of the element in the bottom of the page....<body><a href="#bottom">Bottom of page</a><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><div id="bottom">bottom of page</div></body>

  2. oh so close.... You almost got it all correct, just for these two incorrect ones :):) .... give it another try and fix these two..dhtml = Dynamic Hyper Text Markup Languagexsl = eXtensible Stylesheet Language

  3. Table:UserID PollID AnswerPollID is for different voting questions. it has to be unique for each question.Since you want restrict the user, when every user submits the vote check the userid and pollid and decide......

  4. Heard of Charles Babbage as the father of computers.... Also guess "Alan Turing" is considered as an other father of computersEDIT: Oh just found that Alan Turing is the father of "modern" computers.....

  5. hello..hope some one can help me..my question is how can I pass my value in current form to another form and then retrieve it so that I can used the passed value later...tq..
    There are 2 ways to pass values entered in various fields from one form to another...1. POST method: [send data]<form id="frm" runat="server" method="POST" action="nextpage.aspx">...................<input type="text" runat="server" id="TXT1" size="20">Retrieve data in nextpage.aspx.vbdim str as string = Request.Form("TXT1")2. GET method[send data]<form id="frm" runat="server" method="GET" action="nextpage.aspx">...................<input type="text" runat="server" id="TXT1" size="20">Retrieve data in nextpage.aspx.vbdim str as string = Request.querystring("TXT1")This method passes values in the URL.
  6. If the user who can vote will be a registered member of your website, then we can restrict by getting the unique user id and storing it in a database along with the survey or poll id which he already voted....If not [anybody can vote] then some ways are by getting user's IP and storing in DB....or creating cookies and checking them. This has few problems as user can work around and vote multiple times... not fool-proof.....

×
×
  • Create New...