0
votes
0answers
246 views

(window.opener.location.href) throws unhandled exception

I have a popup window in my web application. When the user clicks the Login button, I want to close the popup window and have the Login.aspx page open in the parent window. I have found this ...
0
votes
1answer
232 views

Asp Net 4.5 web form Redirect to page from HTTP Handler

Hello I aspx page with next call for my ashx <script type="text/javascript" src="/Handlers/MyRedirect.ashx"> </script> Inside of MyRedirect I do some hard logic and try to redirect to ...
0
votes
4answers
301 views

How do I update the client with server side variables during a lengthy loop?

I am trying to put a web interface on a lengthy server side process which should send regular progress\statistic reports to the client as the process is running. How can I do this? Here is what I ...