asp.net-mvc – 如何在ASP.NET MVC中执行辅助操作(即计算字段)?
发布时间:2020-05-23 23:17:21 所属栏目:asp.Net 来源:互联网
导读:我需要对ASP.NET MVC View进行一些计算,这是一种与表单提交不同的操作.我已尝试过各种方法通过ActionLink将当前Model传递给新的控制器操作,但该模型似乎没有被传递. public ActionResult Calculate(MuralProject proj){ ProjectFormRepository db = new Proje
|
我需要对ASP.NET MVC View进行一些计算,这是一种与表单提交不同的操作.我已尝试过各种方法通过ActionLink将当前Model传递给新的控制器操作,但该模型似乎没有被传递. public ActionResult Calculate(MuralProject proj)
{
ProjectFormRepository db = new ProjectFormRepository();
List<Constant> constants = db.GetConstantsByFormType(FormTypeEnum.Murals);
proj.Materials = new MuralMaterials();
proj.Materials.Volunteers = this.GetVolunteerCount(constants,proj);
this.InitializeView();
return View("View",proj);
}
我的Html.ActionLink语法需要什么才能让我调用它并让返回的视图具有相同的模型数据(带有计算的更改)?或者,还有另一种方法可以实现这一目标吗? 我也试过一个Ajax.ActionLink方法,但我遇到了同样的问题 编辑:“为您的提交按钮命名,然后检查控制器方法中提交的值”方法显示here是我正在寻找的. 解决方法[看到你的评论;我会在这里重新发布这个答案,这样你就可以将问题标记为已解决,并将其标记为社区wiki,这样我就不会得到代表 – Dylan]为提交按钮指定名称,然后在控制器方法中检查提交的值: <% Html.BeginForm("MyAction","MyController",FormMethod.Post); %>
<input type="submit" name="submitButton" value="Send" />
<input type="submit" name="submitButton" value="Cancel" />
<% Html.EndForm(); %>
张贴到 public class MyController : Controller {
public ActionResult MyAction(string submitButton) {
switch(submitButton) {
case "Send":
// delegate sending to another controller action
return(Send());
case "Cancel":
// call another action to perform the cancellation
return(Cancel());
default:
// If they've submitted the form without a submitButton,// just return the view again.
return(View());
}
}
private ActionResult Cancel() {
// process the cancellation request here.
return(View("Cancelled"));
}
private ActionResult Send() {
// perform the actual send operation here.
return(View("SendConfirmed"));
}
} (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- asp.net-mvc-3 – 有没有办法通过html.actionlink在ASP.NET
- asp.net-core – 当前的运行时目标框架与项目不兼容
- asp.net-mvc – 这叫什么类型的架构?
- .net – 可以为空的枚举类型的奇怪行为
- asp.net-mvc-3 – 为MVC3应用程序配置Ninject的正确方法是什
- IIS 7应用程序池标识权限
- asp.net-mvc – 如何使ASP.NET MVC mini分析器与Linq 2 SQL
- asp.net-3.5 – 我可以查看soap wcf调用发出的原始请求
- ASP.NET按钮重定向到另一个页面
- asp.net – 什么内容类型强制下载文本响应?
推荐文章
站长推荐
热点阅读
