Asp.Net MVC返回错误页面,填充字段

时间:2011-01-13 08:12:21

标签: asp.net asp.net-mvc asp.net-mvc-2

我正在Asp.net MVC 2中开始一个新项目。 我主要是一个webforms开发人员,并且对Asp.Net MVC的接触有限,因此这可能是一个noob问题。

我的情况如下: 我有一个创建页面,用于将一些数据保存到数据库。 此页面的视图不是强绑定/类型 - 因此我从视图中提取数据的方式是查看POST参数。

如果出现错误(数据验证等),我需要将用户发送回上一页,其中包含所有内容,并显示消息。

在webforms上,由于视图状态,这会自动处理 - 但我怎么能在这里做同样的事情呢?

代码示例如下:

查看:

<% using (Html.BeginForm("Create", "Question", FormMethod.Post)) { %>
<div>
Title: <%: Html.TextBox("Title", "", new { @style="width:700px" })%>
</div>
<div>
Question: <%: Html.TextBox("Question", "", new { @style="width:700px" })%>
</div>
<input type="submit" value="Submit" />
<% } %>

控制器:

    [HttpPost]
    [ValidateInput(false)]
    public ActionResult Create() {
        Question q = new Question();
        q.Title = Request.Form["Title"];
        q.Text = Request.Form["Question"];
        if(q.Save()) {
            return RedirectToAction("Details", new { id = q.Id });
        }
        else {
            // Need to send back to Create page with data filled in
            // Help needed here
        }
    }

感谢。

1 个答案:

答案 0 :(得分:1)

如果出现错误,您只需返回视图即可。这将保留上下文。

[HttpPost]
[ValidateInput(false)]
public ActionResult Create(Question q) {
    if(q.Save()) {
        return RedirectToAction("Details", new { id = q.Id });
    }
    else {
        // Need to send back to Create page with data filled in
        // Help needed here
        return View();
        // If the view is located on some other controller you could
        // specify its location:
        // return View("~/Views/Question/Create.aspx");
    }
}

另外,我建议您使用强类型视图和强类型帮助程序。注意我是如何直接使用Question对象作为动作参数的。这相当于您编写的代码,您手动提取和构建此对象。模型绑定器会自动为您完成此任务。