我在MVC面临一个奇怪的问题。我有一个索引视图。该页面上有一个创建链接。发生的事情是,当我点击创建它时,调用create(get)动作,然后同时调用create(post)动作。理想情况下,我应该在创建视图中单击“保存”后调用post操作。我在获取和发布操作之前需要请求方法属性。在这方面,任何人都可以帮助我吗?
Index.cshtml
<a href="@Url.Action("Create", "Student")" class="btn1">Add New Student </a>
操作:
[HttpGet]
public ActionResult Create()
{
return View();
}
[HttpPost]
public ActionResult Create(Student Student)
{
}