在ASP.NET MVC视图中返回当前操作,可以使用以下方法:
public ActionResult CurrentOperation()
{
// 在这里执行您的操作
return View();
}
@using (Html.BeginForm("CurrentOperation", "YourControllerName", FormMethod.Post))
{
// 在这里添加您的表单元素
<input type="submit" value="执行操作" />
}
[HttpPost]
public ActionResult CurrentOperation(FormCollection form)
{
// 在这里处理表单数据并执行操作
return View();
}
public ActionResult CurrentOperation()
{
// 在这里执行您的操作并创建模型
var model = new YourModel();
return View(model);
}
@model YourNamespace.YourModel
<div>
<p>@Model.YourProperty</p>
</div>
通过以上方法,您可以在ASP.NET MVC视图中执行当前操作并返回结果。
领取专属 10元无门槛券
手把手带您无忧上云