ASP.net web or application development having ajax has issues with page popup by nature.
The scenario is as follows:
a) You have the project which has ajax - so have script manager in page
b) You have a client side event (maybe by onClientClick) where you call window.open
c) The new page which pops up, you would be having a button which says "window.close" on its client click
d) You click on the button to have the popup coming up and click on the button on popup to close it. Try it few times
e) Maybe after 3-4 times, it would freeze the IE and it will show a blank page
Solution:
a) Either change your buttons from Server Control to normal HTML control which resides outside the script manager
b) In most cases #a is not easy, so try to put a "return false;" on the window.close javascript.
Tech Team @ Seguro Technologies
The scenario is as follows:
a) You have the project which has ajax - so have script manager in page
b) You have a client side event (maybe by onClientClick) where you call window.open
c) The new page which pops up, you would be having a button which says "window.close" on its client click
d) You click on the button to have the popup coming up and click on the button on popup to close it. Try it few times
e) Maybe after 3-4 times, it would freeze the IE and it will show a blank page
Solution:
a) Either change your buttons from Server Control to normal HTML control which resides outside the script manager
b) In most cases #a is not easy, so try to put a "return false;" on the window.close javascript.
Tech Team @ Seguro Technologies
No comments:
Post a Comment