Users Pricing

forum

home / developersection / forums / how to retrieve form values in controller action?

How to Retrieve form values in controller action?

Sunil Singh 1264 15 Dec 2017

I want to get form textbox data .I have an MVC controller that has this Action Method:

[HttpPost]

public ActionResult SubmitAction()
{
     // Get Post Params Here
 ... return something ...
}

and i have simple form with textboxes

How I access the parameter values?


Sunil Singh

Other


1 Answers