K Kevin Spencer Apr 12, 2004 #2 how can i pass more than one values from one page to another? In more than one way. ;-) QueryString, Form Post, Session Cache, Application Cache, database, Web Services, Remoting, Messaging Services... That's about all I can think of offhand. -- HTH, Kevin Spencer ..Net Developer Microsoft MVP Big things are made up of lots of little things.
how can i pass more than one values from one page to another? In more than one way. ;-) QueryString, Form Post, Session Cache, Application Cache, database, Web Services, Remoting, Messaging Services... That's about all I can think of offhand. -- HTH, Kevin Spencer ..Net Developer Microsoft MVP Big things are made up of lots of little things.
S Scott Allen Apr 12, 2004 #3 There are a number of different techniques you can use, for example, passing the values in the queryt string, or in the Context.Items colletion during a Server.Transfer (see http://www.odetocode.com/Articles/111.aspx for an example). HTH,
There are a number of different techniques you can use, for example, passing the values in the queryt string, or in the Context.Items colletion during a Server.Transfer (see http://www.odetocode.com/Articles/111.aspx for an example). HTH,
S Shock Apr 12, 2004 #4 Chris, An easy way to do it is to create a string like so: string url = "ID=" + varID + "&" + "Name=" + varName; then your hyperlink should contain something like this: navigateURL = "destination.aspx?" + url; Shock
Chris, An easy way to do it is to create a string like so: string url = "ID=" + varID + "&" + "Name=" + varName; then your hyperlink should contain something like this: navigateURL = "destination.aspx?" + url; Shock