Redirect to Paypal [modified]
-
Hi friends i want to redirect user to paypal site on button click events. my code is string str = ""; str = "http://www.paypal.com/cgi-bin/webscr"; str &= "&cmd=_xclick"; str &= "&business=xyz@xyz.com"; . . . . . . . . Response.Redirect(str); NOT FOUND thanks Pathan -- modified at 7:43 Thursday 30th November, 2006
-
Hi friends i want to redirect user to paypal site on button click events. my code is string str = ""; str = "http://www.paypal.com/cgi-bin/webscr"; str &= "&cmd=_xclick"; str &= "&business=xyz@xyz.com"; . . . . . . . . Response.Redirect(str); NOT FOUND thanks Pathan -- modified at 7:43 Thursday 30th November, 2006
I suggest you re-read what you pasted ;) you are redirecting to the value of
strGO
, but you are filling out the paypal url in a variable calledstr
That code is sayingResponse.Redirect("");
so no wonder it's not working ;) HTH -
Hi friends i want to redirect user to paypal site on button click events. my code is string str = ""; str = "http://www.paypal.com/cgi-bin/webscr"; str &= "&cmd=_xclick"; str &= "&business=xyz@xyz.com"; . . . . . . . . Response.Redirect(str); NOT FOUND thanks Pathan -- modified at 7:43 Thursday 30th November, 2006
-
Hi friends i want to redirect user to paypal site on button click events. my code is string str = ""; str = "http://www.paypal.com/cgi-bin/webscr"; str &= "&cmd=_xclick"; str &= "&business=xyz@xyz.com"; . . . . . . . . Response.Redirect(str); NOT FOUND thanks Pathan -- modified at 7:43 Thursday 30th November, 2006
Hi i have done it. thanks for ur reply Pathan
-
Hi friends i want to redirect user to paypal site on button click events. my code is string str = ""; str = "http://www.paypal.com/cgi-bin/webscr"; str &= "&cmd=_xclick"; str &= "&business=xyz@xyz.com"; . . . . . . . . Response.Redirect(str); NOT FOUND thanks Pathan -- modified at 7:43 Thursday 30th November, 2006
Look at the url you are trying to redirect to.... http://www.paypal.com/cgi-bin/webscr&cmd=\_xclick&business=xyz@xyz.com It should be: http://www.paypal.com/cgi-bin/webscr**_?_**cmd=\_xclick&business=xyz@xyz.com
-
Hi friends i want to redirect user to paypal site on button click events. my code is string str = ""; str = "http://www.paypal.com/cgi-bin/webscr"; str &= "&cmd=_xclick"; str &= "&business=xyz@xyz.com"; . . . . . . . . Response.Redirect(str); NOT FOUND thanks Pathan -- modified at 7:43 Thursday 30th November, 2006