c# - How do I get request parameters in ASP.NET MVC -
How can I create an object object in ASP and get and receive post parameters in .NET MVC.
I can not define them in the verb constructor, I want to draw information directly from the request.
You can do this:
string strparam = HttpContext.Current .equest ["someParameter"];
Comments
Post a Comment