how do redirect values to other page without click event in html. Below code is fine IE. But Not in
Posted
by karthik
on Stack Overflow
See other posts from Stack Overflow
or by karthik
Published on 2010-05-07T04:22:02Z
Indexed on
2010/05/07
4:28 UTC
Read the original article
Hit count: 279
cross-browser
|paypal
I have implemented paypal in my web page. Process is 'given inputs are redirect to other page(2 nd page) which have to get that input and redirect to paypal page(third page). Here we submit data on first page. value pass to second page(in this page user interaction not allowed) after pass to third page.It works fine in IE . But Not In Mozila.Send any Solution.
Code sample(second page):
<%string product = Request.QueryString["productName"].ToString();%> <% string amount = Request.QueryString["price"].ToString(); %> "> ">
document.all.frmpaypal.submit();
Fine in IE, Not In Mozila
© Stack Overflow or respective owner