gpt4 book ai didi

asp.net-mvc - 在 ASP.NET MVC4 中使用 HTML.BeginForm 时如何将类定义添加到表单?

转载 作者:行者123 更新时间:2023-12-01 16:14:19 24 4
gpt4 key购买 nike

我有以下内容:

 @using (Html.BeginForm(new { ReturnUrl = ViewBag.ReturnUrl }))

我试过这个:

 @using (Html.BeginForm(new { @class = "form", ReturnUrl = ViewBag.ReturnUrl }))

但是我没有看到添加了类“form”。我定义它的方式有问题吗?

最佳答案

尝试像这样显式定义 htmlAttributes 参数:

@using (Html.BeginForm(null, null, FormMethod.Post, htmlAttributes: new { @class = "form-class" })) {
}

看完评论更新尝试使用允许您指定路由对象的 BeginForm 重载之一(我没有对此进行测试,因为我附近没有 IDE)

@using (Html.BeginForm("Action", "Controller", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, htmlAttributes: new { @class = "form-class" })) {
}

关于asp.net-mvc - 在 ASP.NET MVC4 中使用 HTML.BeginForm 时如何将类定义添加到表单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14089085/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com