Click here to Skip to main content
15,867,756 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
hi readers....

now i am creating one web application in that i have panel control in that i designed registration form.if i enterd all details and click save button. then these all details will be appear on one popup window..
Posted

You can use the ModalPopUpExtender which is available through AjaxControlToolkit.

http://www.asp.net/AjaxLibrary/AjaxControlToolkitSampleSite/ModalPopup/ModalPopup.aspx[^]

Or if you are using Jquery, you can use the dialog functionality.
 
Share this answer
 
Another Method

From Parent page

C#
protected void Button1_Click(object sender, EventArgs e)
       {
           string s_popScript = "<script>window.open('PopUp.aspx', null,'width=950,height=420,left=350,top=250,directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no'); </script>";
           Page.ClientScript.RegisterStartupScript(this.GetType(), "controlJSScript", s_popScript, false);

       }
 
Share this answer
 

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