If you're using a server control as the button to popup the modal
dialog, change it to just a plain html <button > tag.
If you need/want to keep the server control, put "return false;" at
the end of the javascript to prevent that button click from causing a
postback.
--
Jason Kendall
On 11 Aug 2005 06:34:11 -0700, "Samy" <>
wrote:
>Hi There,
>I have a user control with buttons on it which I use on a aspx page
>(parent page). On a button click, a modal dialog(aspx page) opens up
>and the user enters some info in the modal dialog and clicks the save
>button on it. The info is saved to the DB and the parent page is
>refreshed. Everything works fine but for some reason the page load is
>called twice. I have set the AutoEventWireUp = false on every page.
>Also I have load event defined on the parent page and the child page
>(which opens as a modal dialog). User control doesn't have any load
>event defined. Can somebody help me please?
>Thanks a lot.