1

我开始使用 mvc 并设计一个简单的登录过程。我有两个输入用户名和密码的登录屏幕视图。但显然无法获得如何将输入值从我的视图传递到我正在使用剃须刀的控制器。这是我的片段。

<table>
    <tr>
        <td>
            UserName:
        </td>
        <td>
            @Html.TextBox("userName")
        </td>
    </tr>
        <tr>
        <td>
            Password
        </td>
        <td>
            @Html.Password("Password")
        </td>
    </tr>
    <tr>
        <td colspan="2">
            @Html.ActionLink("login", "SignIn")
        </td>
    </tr>
</table>

我的控制器看起来像这样。(我可以使用操作链接重定向到控制器就好了。只是传递值。)

public ActionResult SignIn()
{
    //string userName = Request["userName"];
    return View("Home");
}
4

3 回答 3

2

您可以将上面的 html 内容包含在表单容器中,您将表单提交方法声明为POST.

@using (Html.BeginForm("SignIn", "Controller", FormMethod.Post, new { id = "form1" }))
{
    <table>
    <tr>
        <td>
            UserName:
        </td>
        <td>
            @Html.TextBox("userName")
        </td>
    </tr>
        <tr>
        <td>
            Password
        </td>
        <td>
            @Html.Password("Password")
        </td>
    </tr>
    <tr>
        <td colspan="2">
            <input type="submit" value="login" name="login" />
        </td>
    </tr>
</table>
}

然后,您可以将PostAction 放入您的控制器中:

[HttpPost]
public ActionResult SignIn(FormCollection frmc)
{
    /// Extracting the value from FormCollection
    string name = frmc["userName"];
    string pwd = frmc["Password"];
    return View("Home");
}
于 2012-09-27T09:55:20.993 回答
0

用表格包裹你的桌子:

    @using (Html.BeginForm("SignIn", "controllerName", FormMethod.POST))
{
<table>
...
</table>
<input type="submit" value="Sign in" />
}

并在控制器中写入:

[HttpPost]
public ActionResult SignIn(string userName, string Password)
{
 //sign in and redirect to home page
}
于 2012-09-27T09:55:04.463 回答
0

看法:

@using (Html.BeginForm("SignIn", "Controller", FormMethod.Post, new { id = "form1" }))
{
<table>
<tr>
    <td>
        UserName:
    </td>
    <td>
        @Html.TextBox("userName")
    </td>
</tr>
    <tr>
    <td>
        Password
    </td>
    <td>
        @Html.Password("Password")
    </td>
</tr>
<tr>
    <td colspan="2">
        <input type="submit" value="login" name="login" />
    </td>
</tr>
</table>
}

模型:

public string userName{get;set;}
public string Password{get;set;}

控制器:

[HttpPost]
 public ActionResult SignIn(Model obj)
 {
  //sign in and redirect to home page
   string userName = obj.username;
   string password = obj.password;
 }

它可能对您有帮助。

于 2014-01-31T20:00:06.187 回答