I’m just wondering, is there a way to get the GET parameters and POST parameters in just one function or Collection in ASP.NET? Like using $_REQUEST in PHP? I’m using VB.NET.
I’m just wondering, is there a way to get the GET parameters and POST
Share
Request["VariableName"](in C#) andRequest("VariableName")(in VB) should work.See
HttpRequest.Itemindexer: