如何将数据从视图发送到MVC3中的控制器

时间:2012-11-27 09:05:00

标签: asp.net-mvc-3

大家好我想问一下如何将数据从视图发送到控制器?我想用我的控制器和视图来描述我的问题,如下所示

这是登录操作控制器

[HttpPost]
public ActionResult Login(Panel model, string Username, string Password, string CaptchaValue, string InvisibleCaptchaValue)
{
    bool cv = CaptchaController.IsValidCaptchaValue(CaptchaValue.ToUpper());
    bool icv = InvisibleCaptchaValue == "";

    if (!cv || !icv)
    {
        ModelState.AddModelError(string.Empty, "The Captcha Code you entered is invalid.");
    }

    if (ModelState.IsValid)
    {
        if (model.Username == Username && model.Password == Password)
        {
            FormsAuthentication.SetAuthCookie(model.Username, false);
            return RedirectToAction("index", "Home");
        }
        else
        {
            ModelState.AddModelError("", "Check your name or password");
        }
    }
    return View();
}

因此,当用户登录时,重定向到Home / index视图。在这一点上,一切都很好。

这是我的索引视图:

[Authorize]
public ActionResult index()
{
    return View();
}

我的问题是如何保存用户的密码参数并从索引视图发送到不同的控制器以在控制器方法中使用此参数但是如何?例如,我想在where子句中的index_test控制器方法中使用password参数,但首先我需要从index发送此数据。

public ActionResult index_test()
{
    return View(db.contents.Where(x => x.test_parameter== password).ToList());
}

2 个答案:

答案 0 :(得分:3)

您必须在操作方法中添加一个参数:

public ActionResult index_test(string password) { ...

在您的视图中,您可以通过标准链接将数据发送到操作:

@Html.ActionLink("Click me", "index_test", "Controller", 
                                  new { password = "StringOrVariable")

或者通过表格发布:

@using(Html.BeginForm("index_test")) { 
    <input type="hidden" name="password" value="mypassword" />
    add some fields
    <input type="submit" value="Send" />
}

答案 1 :(得分:0)

在您的视图中将表单发布回控制器,例如

<form action = "yourcontroller/youraction" method = "POST" enctype = "multiparrt/form-data">