hi,
I've been learning how to execute the radio
button inputs with asp.
in my asp file, I wrote:
<%
q1 = Request.Form("q1") //q1 is input from
radio button with
value = "yes"
or "no"
Dim answer(1) //my array
answer(0) = "you are smart"
answer(1) = "you are very smart"
if (q1 = "yes") then
response.write (answer(0))
%>
can I write like that ???
have any idea ???
thanks