Hello.
I have an html form that I am trying to post to itself. (Objective is to retain the values a user enters in the form fields after clicking submit in case changes are required to only a few fields after initial form completion.)
My text boxes and text areas work fine. I can have the form retain text boxes and textareas by using the following code:
<input name="MyInputName" type="text" id="MyInputID" value="<% = MyVariable01%>"/>
<textarea name="MyOtherInputName" cols="90" id="MyOtherInputID"><% = MyVariable02%>
</textarea>
I can't get radios and select (combo) boxes to return the variable values to the form. Can anyone help?
I have an html form that I am trying to post to itself. (Objective is to retain the values a user enters in the form fields after clicking submit in case changes are required to only a few fields after initial form completion.)
My text boxes and text areas work fine. I can have the form retain text boxes and textareas by using the following code:
<input name="MyInputName" type="text" id="MyInputID" value="<% = MyVariable01%>"/>
<textarea name="MyOtherInputName" cols="90" id="MyOtherInputID"><% = MyVariable02%>
</textarea>
I can't get radios and select (combo) boxes to return the variable values to the form. Can anyone help?