简体   繁体   中英

How do I pass this parameter in my html code into an action in my controller

My HTML Code

How do i pass the #employee# from my html into an action in my controller?

<form action="myController/myAction" method="POST">
 <input type="text" name="employee" />
 <input type="submit" value="View Report" />
</form> 
controller:

[HttpPost]
public ActionResult myAction(string  employee )
{
   //....
}

ASP.Net MVC How to pass data from view to controller

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM