Passing values from one asp.net page to another page

SumeetK

Newcomer
Joined
Feb 19, 2004
Messages
9
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
 
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
 
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
 
Back
Top