nikscrasher
Programmer
I have a problem when I click the button the url is not in proper way.
Instead of :
'not valid
Here's my code:
Let's say this is my Confirm_Page.aspx
Public Sub SubmitBet()
Dim x
Dim y
If x > y then
Server.Transfer("template2.aspx?target=SubmitBet&sessionid=" & Request.QueryString("sessionid"), true)
Else
Server.Transfer("template2.aspx?target=Confirm&sessionid=" & Request.QueryString("sessionid"), true)
End If
End Sub
Note:
if x > y go to another page to process bet else go back to confirm_page.aspx
Thank you very much...
Instead of :
'not valid
Here's my code:
Let's say this is my Confirm_Page.aspx
Public Sub SubmitBet()
Dim x
Dim y
If x > y then
Server.Transfer("template2.aspx?target=SubmitBet&sessionid=" & Request.QueryString("sessionid"), true)
Else
Server.Transfer("template2.aspx?target=Confirm&sessionid=" & Request.QueryString("sessionid"), true)
End If
End Sub
Note:
if x > y go to another page to process bet else go back to confirm_page.aspx
Thank you very much...