0

我对 ASP.NET MVC 2 非常陌生。

我正在尝试从自定义登录屏幕制作简单的登录屏幕 (教程在 MVC 4 中)

这是我的登录视图,其余模型和控制器与链接示例中描述的相同。

 <div class="editor-label">
            <%=Html.LabelFor(u => u.UserName)%>
        </div>
        <div class="editor-field">
            <%=Html.TextBoxFor(u => u.UserName)%>
            <%=Html.ValidationMessageFor(u => u.UserName)%>
        </div>

  <input type="submit" value="Log In" />

我如何将它与模型和控制器链接?

请帮忙

4

2 回答 2

1

您可以使用Bios给出的答案

在第一种方法中,任何具有类型submit的按钮都将调用定义在

<% using (Html.BeginForm("Action", "Controller", null, FormMethod.Post, new {@id = "value")) {%>

同样适用<form method="post" action="/Controller/Action">

于 2013-10-16T07:22:06.337 回答
1

如果您使用剃须刀作为视图引擎,请尝试使用Html.BeginForm()提交表单。

例子:

<% using (Html.BeginForm("Action", "Controller", null, FormMethod.Post, new {@id = "value")) {%>

 //Your form goes here

<% } %>

或者

<form method="post" action="/Controller/Action">
   //Your form goes here
</form>
于 2013-10-16T07:13:53.267 回答