asp.net, passing parameters to other page

  • Thread starter Thread starter xxxxyz
  • Start date Start date
X

xxxxyz

Hi.

Could you tell me the ways in which I can pass the value of a given
variable to another Web page? I prefer NOT to use cookies and
parameters in the URL. For example I want the user name to be shown in
each page in a label control.

Thanks.
 
You can use session or application variables but I believe there are
some limitations for these. And the tried and true writing the data
to a file and reading it back in. A variation on this is to write it
to a database table.

Robert
 
Back
Top