On a button click, I want to open up a RadWindow with a PayPal payment page in it. Instead, the RadWindow disappears and the PayPal page opens up in the parent window plus it displays an error that does not occur if you manually try the url within the browser.
Perhaps it is related to redirection by PayPal or maybe that it is SSL. I have seen a few other postings here related to redirects opening in the parent with no solution.
The url is:
https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=bill@hotmail.com&item_name=iPod&amount=100.00
The test case is:
Thanks,
Gary Davis
Perhaps it is related to redirection by PayPal or maybe that it is SSL. I have seen a few other postings here related to redirects opening in the parent with no solution.
The url is:
https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=bill@hotmail.com&item_name=iPod&amount=100.00
The test case is:
<script type="text/javascript"> |
function openWin() |
{ |
var url = "https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=bill@hotmail.com&item_name=iPod&amount=100.00"; |
var oWnd = radopen(url,"RadWindow1"); |
} |
</script> |
<asp:ScriptManager runat="server" ID="scriptMgr" /> |
<telerik:RadWindowManager ID="WindowManager1" runat="server"></telerik:RadWindowManager> |
<button onclick="openWin(); return false;">open window</button> |
Thanks,
Gary Davis