----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: Thanigaimani2 Message 5 in Discussion Kindly try the following script to achive this. And change the query string based on ur need. string url = "http://www.somesite.com/mypopup.aspx"; string prop = "width=500, height=300, menubar=no, scrollbars=yes, location=no, resizable=no"; string script = "<script language='JavaScript'>"; script += String.Format("window.open('{0}&id={1}&type={2}', 'ArchivedWindow', '{3}');", url, id, type, prop); script += "</script>"; Page.RegisterStartupScript("popupScript", script); And u can fetch the data from DB and store into the Session, then u can able to access Session from the popup page. Hope this will satisfy ur need. vnisor [EMAIL PROTECTED] ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/BDotNet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
