hello, i have had much help from these forums and am forever grateful for the time and stress that they have saved me in the past.
i have a quote system for my website that i wish to develop.
i like the idea of pages that refresh instantly with new data if something is pressed and that is what i want to learn to do.
the page is here http://www.londonheathrowcars.com/blankquote.asp
basically i want to begin to understand how the 'refresh page' thing can be acheived without redirecting my user to another page...
here is the code for that simple page. if someone could tell me what step i would need to take to ensure that the page refreshes when one of the radio buttons is selected..
thanks in advance for any solutions..
kiss first.. cum later
i have a quote system for my website that i wish to develop.
i like the idea of pages that refresh instantly with new data if something is pressed and that is what i want to learn to do.
the page is here http://www.londonheathrowcars.com/blankquote.asp
basically i want to begin to understand how the 'refresh page' thing can be acheived without redirecting my user to another page...
here is the code for that simple page. if someone could tell me what step i would need to take to ensure that the page refreshes when one of the radio buttons is selected..
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/strict.dtd">[/URL]
<html>
<head>
<title> | </title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="external.js"></script>
<script type="text/javascript" src="menu.js"></script>
</head>
<body>
<div id="wrap">
<div id="bleft">
<h1 class="top">Online Quote Finder</h1>
<form name="form" method="post" action="none-yet.asp" onSubmit="return IsQuoteFormComplete()">
<p class="mainbody">Please choose your type of journey to get a quote:</p><br>
<form name="form" method="post" action="redirect.asp" onSubmit="return IsQuoteFormComplete()">
<p class="mainbody">
<input type="radio" VALUE="v2" name="r1" onMouseOver="style.cursor='pointer'"> Travel From Heathrow   <input type="radio" VALUE="v1" name="r1" onMouseOver="style.cursor='pointer'"> Travel To Heathrow<br>
</form>
<br><br><br>
</div>
<div id="bright">
</div>
</div>
</body>
</html>
thanks in advance for any solutions..
kiss first.. cum later