Hi,
This is my code
I have a ASP page, in that there are 3 options.
If i leave the first option blank it should move to third page..
But it doesn't work.
Can anyone help??
Thanx..
This is my code
Code:
If (Request.Form("desc1")<>"") Then
Response.Redirect "SecondPage.asp"
End If
If (Request.Form("desc3")<>"") Then
Response.Redirect "ThirdPage.asp"
End If
If i leave the first option blank it should move to third page..
But it doesn't work.
Can anyone help??
Thanx..
Comment