I currently have 3 radio buttons... depending on which button is selected It writes a value to SQL... how can i get the page to remember which value was selected and have that value remain selected when the page reloads??!
Any ideas
Any ideas
|
<input type=radio name="opt" value="1" <%if request("opt")="1" then response.write " checked "%>> <input type=radio name="opt" value="2" <%if request("opt")="2" then response.write " checked "%>> <input type=radio name="opt" value="3" <%if request("opt")="3" then response.write " checked "%>> |