-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: modi.net
Message 2 in Discussion

Hi,   One possible to solution to your problem is as follows :   Take the input from 
the user in the popup. On submit of the form in the popup construct an URL which 
contains the name of the parent page and all the form values as querystring.    
qryString = pagename.aspx + form values    Call the code below on OnClick of Button 
and assign the value of the qryString to opener.location.  
HttpApplication currentApp = HttpContext.Current.ApplicationInstance;  
currentApp.Response.Write("<Script Language='JavaScript'>");
currentApp.Response.Write("window.opener.location='" + qryString + "';");
currentApp.Response.Write("window.close();");
currentApp.Response.Write("</Script>");   
Check the values of the querystring in the parent form and pass it your function which 
contains the stored proc. 
Hope this will of some use to you. 
Best Regards, 
Praveen :-) 
 

-----------------------------------------------------------

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]

Reply via email to