2013-10-16 175 views
0

我非常新的ASP.NET MVC 2登錄屏幕2

我試圖讓簡單的登錄屏幕從Custom Login Screen(該教程是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" /> 

如何將它與模型和控制器鏈接?

如果您使用剃刀作爲視圖引擎請幫

+0

我認爲該解決方案已經有一個'BeginForm()'。那麼你的問題到底是什麼?它應該按照您提供的解決方案鏈接提供的方式工作。 – Nilesh

回答

1

您可以使用BIOS

在第一種方法與 submit類型的任何按鈕給出

答案將調用在

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

同樣適用<form method="post" action="/Controller/Action">

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>