S
SAL
Hi,
VS2005 post
I'm opening a window using the following syntax:
Protected Sub lbEstValue_Click(ByVal sender As Object, ByVal e As
System.EventArgs)
Response.Write("<script>window.open('EstValueHelp.aspx','_help',
'width=400,height=400');</script>")
End Sub
lbEstValue is a LinkButton
So, when the child window gets opened, if I don't close it and just click
back on the page that opened it, and then I close the parent page, the debug
environment doesn't stop debugging because there's still a window open. I'm
assuming this would lead to memory leaks on the server.
Is there a way I can make sure this child window gets closed?
There doesn't seem to be any page events that would be useful to me...
Any help would be much appreciate.
S
VS2005 post
I'm opening a window using the following syntax:
Protected Sub lbEstValue_Click(ByVal sender As Object, ByVal e As
System.EventArgs)
Response.Write("<script>window.open('EstValueHelp.aspx','_help',
'width=400,height=400');</script>")
End Sub
lbEstValue is a LinkButton
So, when the child window gets opened, if I don't close it and just click
back on the page that opened it, and then I close the parent page, the debug
environment doesn't stop debugging because there's still a window open. I'm
assuming this would lead to memory leaks on the server.
Is there a way I can make sure this child window gets closed?
There doesn't seem to be any page events that would be useful to me...
Any help would be much appreciate.
S