Click here to Skip to main content
15,896,201 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using modalpopup window like this

HTML
Page.ClientScript.RegisterStartupScript(
Me.GetType(), "popup", "<script language=javascript>window.showModalDialog('Create_Alerts_Setting.aspx','','width=800px,height=500px')</script>")

in vb.net
but, When i click in modal window button it loads again.
how to stop it

thank you.
Posted
Updated 2-Feb-12 23:51pm
v2

1 solution

try adding this in the head tag

C#
<base target="_self" />


and the following as well. This is to make sure that when this page gets loaded via showModalDialog method it will still go to Page_Load event
C#
<meta http-equiv="Expires" content="0" />
<meta http-equiv="Pragma" content="no-cache" />
 
Share this answer
 
v2
Comments
Jagadeesh Bollabathini 3-Feb-12 6:12am    
But the user can able to click again on parent page button.
that should not happen

Thank you
Anuja Pawar Indore 3-Feb-12 9:20am    
Added pre tag

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900