Desperately need help....
here's the snippet of my code that im trying to solve since last week...
icePayment.aspx
payResult.asp
However,it could not be captured in payResult.asp
Ive tried using Request.form(Se ssion("res"), Session("res") in payResult.asp but still it doesnt work...
here's the snippet of my code that im trying to solve since last week...
icePayment.aspx
Code:
If (Left(Request.Form("return_url"), 7) <> "http://") Then
errorInput = errorInput & "Invalid return URL path! <BR>"
errorExist = True
Response.Redirect("InvalidUrlError.aspx")
Else
Session( "res") = "1"
TextBox2.Text = Session(Response.Redirect(Request.Form("res")"retu rn_url"))
Code:
<% if ( Request.QueryString(Session("res") ) = "1") then %>
Thanks!
<% else %>
sorry
<% end if %>
However,it could not be captured in payResult.asp
Ive tried using Request.form(Se ssion("res"), Session("res") in payResult.asp but still it doesnt work...
Comment