by cliper
Wednesday, June 25, 2008 11:27 AM
Well, sometimes we asked how can we passed request parameters in our web application?
So if we have http://cliper.boholcentral.com/?request_id=test we need to get "test"
In our classic ASP web application, we do like
Request.QueryString("request_id")
probably, ASP.NET still uses this syntax and the most readable syntax could be:
C#
Request["request"];
VB
Request("request_id");
fb6831ff-8c91-4c67-96f9-6b34e6cdf296|0|.0
Tags:
ASP.NET | C#