passing values from page to page

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
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
 
Back
Top