Hello
i am trying to code a survey.
there are questions and answers.The answers are radioboxes. if answer "no" is selected,the partial page which includes that question part, should be refreshed and a more question is needed to asked. How can handle this partial refresh stuff in html?
<html>
<form>
Response.Write("<b> question 1 </b><br>
yes <input type=radio name=q25 value=0><br>
no <input type=radio name=q25 value=1 ><br>")
if (q25==1)
Response.Write("question 2")
Response.Write("yes <input type=radio name=q255 value=0><br>
no <input type=radio name=q255 value=1 ><br>")
</form>
</html>