我正在使用mvc 5创建一个网络应用程序,我有两个按钮
<div class="row">
<div class="col-sm-offset-5 col-sm-1">
<input type="submit" name="save" value="SAVE" class="btn btn-primary glyphicon glyphicon-save" />
</div>
<div class="col-sm-offset-0 col-sm-1">
<input type="submit" name="reset" id="reset" value="Reset" class="btn btn-warning active glyphicon glyphicon-refresh" />
</div>
</div>
我有一个按钮点击后调用的方法
现在我想要区分按钮点击,
等
如果用户点击
<input type="submit" name="save" value="SAVE" class="btn btn-primary glyphicon glyphicon-save" />
然后
{
//this code should run
}
如果用户点击
<input type="submit" name="reset" id="reset" value="Reset" class="btn btn-warning active glyphicon glyphicon-refresh" />
然后
{ //this set of code should run }
我的方法看起来像这样
[HttpPost]
public ActionResult insertrecd(FormCollection fc)
{
if(fc["reset"]==null)
{
return RedirectToAction("party", "party");
}
else
{
ViewBag.message = string.Format("Hello {0}.\\nCurrent Date and Time: {1}", "name", DateTime.Now.ToString());
return RedirectToAction("party", "party");
}
}
我需要做什么,我想在不同的按钮点击上做不同的代码?
答案 0 :(得分:2)
为每个输入按钮指定相同的名称,但值不同
<input type="submit" name="action" value="save" class="btn btn-primary glyphicon glyphicon-save" />
<input type="submit" name="action" id="reset" value="reset" class="btn btn-warning active glyphicon glyphicon-refresh" />
该值将在您的表单集合中作为
fc["action"]
所以你的控制器动作看起来像
[HttpPost]
public ActionResult insertrecd(FormCollection fc)
{
var action = fc["action"];
if(action == "save")
{
//save stuff
}
if(action =="reset")
{
//reset stuff
}
}