SumeetK Posted February 20, 2004 Posted February 20, 2004 I am new in .Net technology , I am trying to open a popup window from my parent window with passing a value through querystring. Popup windows gets open .. in popup window i am selecting few employees and storing the value in a string. Now, I want to pass this stored value in my parent window text box !! I am really confused now... Please help. Thanks in advance. Bye Quote
TheWizardofInt Posted February 20, 2004 Posted February 20, 2004 You can add a module just like in VB6 or other programs File/Add New Item/Module using VS.Net In the module, you can create public procedures and variables, just like in those same programs. These variables carry between your forms. You can also use session variables like Session("Announce") = "I like pizza!" However, these are a trouble-shooting night mare (you can't put your mouse over the variable and read its contents) and they die if your session times out Quote Read the Fovean Chronicles Because you just can't spend your whole day programming!
Moderators Robby Posted February 20, 2004 Moderators Posted February 20, 2004 Sorry but I'm not a fan of Modules in .NET, check out this sample instead ...http://www.xtremedotnettalk.com/showthread.php?threadid=78434 Quote Visit...Bassic Software
SumeetK Posted February 21, 2004 Author Posted February 21, 2004 Sir, Values are moving from one page to another but is there any way that my child window open as a popup and then close after passing the values.... means instead of using server.transfer is there any way else to move the values... Thanks in advance Sumeet Kohli Quote
Moderators Robby Posted February 21, 2004 Moderators Posted February 21, 2004 This sample will help .... http://www.xtremedotnettalk.com/showthread.php?threadid=79596 Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.