Getting Parameters...

  • Thread starter Thread starter Eddie
  • Start date Start date
It's the same way as in ASP 2 and 3. Use the Querystring collection. It's
part of the HttpRequest object. accessible through
Page.Request.Querystring["param1"].

Jeffrey Palermo
 
Thank you Jeffrey, works perfectly...


Jeffrey Palermo said:
It's the same way as in ASP 2 and 3. Use the Querystring collection. It's
part of the HttpRequest object. accessible through
Page.Request.Querystring["param1"].

Jeffrey Palermo

Eddie said:
Hi All,
How may I get parameters of a Link in ASP.NET ?

Ex : http://localhost/test.aspx$param1=99
In the Page_Load event, I want to be able to get the value of the parameter
param1 (99)

Thx !

Eddie
 
Back
Top