R
rn5a
Assume that an ASPX page is accessed using the following URL:
http://myserver/Page1.aspx?fname=john
The value of the querystring fname (which is john) can be retrieved
using both Request.Params("fname") & Request.QueryString("fname").
So what's the difference between Request.Params("fname") &
Request.QueryString("fname")?
http://myserver/Page1.aspx?fname=john
The value of the querystring fname (which is john) can be retrieved
using both Request.Params("fname") & Request.QueryString("fname").
So what's the difference between Request.Params("fname") &
Request.QueryString("fname")?