HTML - Help! How To Return
Hi All:
I'm making a online configurator so that users can customize the product. the question is : After people finish customization, can they save their choice so that when they come back, they can see their choice directly. Similar TutorialsDear friends, I have a situation (may be silly but needed) as below When clicking 1.html should open http://myurl/2.html and return to 1.html again. I can do anything on 1.html but not on 2.html any advice? if html is not possible aspx pls? Thanks Bala Hello, I am trying to create a blog page on my website and after every blog entry I would like to include a top link, that would send the user to the top of the page, where the latest blog entry is located. Hi there, what should I do to get validated the following error? I have to validate it with XHTML 1.0 Strict. Please someone help me, thanks so much. Code: Line 39, Column 32: character "&" is the first character of a delimiter but occurred as data . onsubmit="return validateForm() & & validateMessage();"> This message may appear in several cases: * You tried to include the "<" character in your page: you should escape it as "<" * You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&", which is always safe. * Another possibility is that you forgot to close quotes in a previous tag. Currently im wishing to be able to have a text form box that i cna write in and it goes somewhere(a database maybe?) and checks if its the correct ansewer, if it is, it goes to the new URL if its wrong it comes up with an error messege and then goes back to the previous page. How do i do this? Or at least START doing this? I have a simple window.showModalDialog code to bring up a dialog box. It works find until I close the dialog box and the initiating page moves to the top. Any ideas how to stop this: The code is below: <script language="javascript"> function popUp() {var url = "ipcc.php"; window.showModalDialog( url, "Intergovernmental Panel on Climate Change", "resizable:yes; scroll:yes; status:no; dialogLeft:100px; dialogTop:100px; dialogHeight:470px; dialogWidth:640px;");} Thanks. I am trying to create a form where I can check boxes of skills to return results of how many "departments" i have checked have those skills. It would look something like this: Check box - Description of skill1 Check box - Description of skill2 Check box - Description of skill3 SUBMIT BUTTON Department | Skill1 | Skill 2 | Skill 3 | Total -------------------------------------------------- ABC________1_______1______0____2 XYZ ________1_______1______0____2 So I need a code where I can check the boxes that apply, hit the submit button and have a value box display in each department instance if there was a match of not (1 = match 0 = no) So if i checked box skill 1 and skill 2 there would return a 1 under skill 1 and 2 for each department and show the tally of that under the total. Can someone help? thanks! I've got a form setup where it takes the user to a new page when they submit their information. If they didn't enter a valid email address it tells them to go back and fix it. When returning to the page though all of the input fields are reset to blank. I found this script that fixes it. But I could have sworn that it was possible to remedy this without javascript. Am I wrong? Hi there! Anyone know where i would put this: onsubmit="return checkForm();" I think the code is right below! Feel free to hack away if anyone sees any problems? Matt PHP Code: <form ACTION="http://www.thisisnep.co.uk/commercialscripts/andfeedback.asp" METHOD="POST" enctype="multipart/form-data" NAME="OnlineEnquiryForm" id="OnlneEnquiryForm" > <INPUT TYPE="hidden" NAME="FH_toaddress" VALUE="hurley_@hotmail.co.uk"> <INPUT TYPE="hidden" NAME="FH_subject" VALUE="OnlineEnquiryForm"> <input type="Hidden" name="FH_redirecturl" value="http://www.matthurley.net"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="right">Full Name:</td> <td> </td> <td><input name="Name" type="text" id="Name" size="40" /></td> </tr> <tr> <td align="right"> </td> <td> </td> <td> </td> </tr> <tr> <td align="right">Email:</td> <td> </td> <td><input name="Email" type="text" id="Email" size="40" /></td> </tr> <tr> <td align="right"> </td> <td> </td> <td> </td> </tr> <tr> <td align="right">Contact Telephone Number:</td> <td> </td> <td><input name="Telephone Number" type="text" id="Telephone Number" size="40" /></td> </tr> <tr> <td align="right"> </td> <td> </td> <td> </td> </tr> <tr> <td align="right">How did you hear about Us:</td> <td> </td> <td> <input name="How Did You Hear About Us" type="text" id="myMandatory1" value="<Please Fill In>" size="40" mandatory="1" /></td> </tr> <tr> <td align="right"> </td> <td> </td> <td> </td> </tr> <tr> <td align="right" valign="top">Any othe comments...</td> <td> </td> <td><textarea name="Comments" cols="40" rows="10" id="Comments"></textarea></td> </tr> <tr> <td align="right"> </td> <td> </td> <td> </td> </tr> <tr> <td align="right"> </td> <td> </td> <td><center> <input type="hidden" name="action" value="1" /> </font> <input type="submit" name="Submit" value="Submit"/> </font> </td> </tr> </table> </form> |