if i run this from page1.asp:
<form action="page2.asp">
and on page2.asp write:
request.form("field1"
i get the value from field1, page1.asp. OK
if i use:
<form action=<%call function()%>>
and the function is:
if
radio button = 1 then response.redirect("page2.asp"
else
response.redirect(page3.asp"
end if
the request.form("field1"
on both page2.asp and page3.asp returns nothing.
please does anyone know what am i doing wrong?
<form action="page2.asp">
and on page2.asp write:
request.form("field1"
i get the value from field1, page1.asp. OK
if i use:
<form action=<%call function()%>>
and the function is:
if
radio button = 1 then response.redirect("page2.asp"
else
response.redirect(page3.asp"
end if
the request.form("field1"
please does anyone know what am i doing wrong?