0

在 .ASPX 视图(不是 Razor)中...是否可能...或...我如何修改上的操作

    Html.BeginForm("**ACTION**", "controllername",  FormMethod.Post, new { id = "formId" }))

在调用视图之前从控制器的 ActionResult 中获取视图?

4

1 回答 1

0

您可以将以下代码用于动态分配操作名称。

@{
    String actionName = /*Assign action name based on the applying condition or using ViewBag you can also get it from controller.*/;
}
@using (Html.BeginForm(actionName, "Basic"))
{

}
于 2012-10-29T09:02:53.183 回答