回发后无法看到视图

时间:2013-07-30 09:08:44

标签: c# asp.net-mvc asp.net-mvc-4 asp.net-mvc-3-areas

您好我有一个下拉列表,我绑定了控制器中的一个我有一个按钮,我正在做一些工作正常的验证,

当我提交验证检查按钮时,我无法获取包含错误消息的视图。而不是这个我得到的错误像“视图'PostValues'或其主人没有找到或没有视图引擎支持搜索的位置”。 任何人都会帮助我为什么无法得到这个观点 这里的视图是强类型视图 这是我在控制器中的代码。

public class CrossFieldsTxtboxesController : Controller
{
        [AcceptVerbs(HttpVerbs.Get)]
        public ActionResult Index()
        {
            var model = NewMethod();              
            return View(model);
        }    
        private static CrossFieldValidation NewMethod()
        {
            var model = new CrossFieldValidation
            {
                SelectedValue = "Amount",
                Items = new[]
                {
                     new SelectListItem { Value = "Amount", Text = "Amount" },
                     new SelectListItem { Value = "Pound", Text = "Pound" },
                     new SelectListItem { Value = "Percent", Text = "Percent" },
                }    
            };
            return model;
        }
        [HttpPost]
        public ActionResult PostValues(CrossFieldValidation model1)
        {               
            model1 =  NewMethod();
            if (!ModelState.IsValid)
            {    
                return View(model1);
            }
            else
            {
                return RedirectToAction("Index");                       
            }                                               
        }    
    }

这是我的观点

@model MvcSampleApplication.Models.CrossFieldValidation   
@{
    ViewBag.Title = "Index";
}
<h2>Index</h2>
@using (Html.BeginForm("PostValues", "CrossFieldsTxtboxes"))
{   
    @Html.ValidationSummary(true)
    <div class ="editor-field">
      @Html.TextBoxFor(m => m.TxtCrossField)
       @Html.ValidationMessageFor(m=>m.TxtCrossField)
    </div>    
       @Html.DropDownListFor(m=> m.SelectedValue , Model.Items)
     <input id="PostValues" type="Submit" value="PostValues" />
}

任何人都可以帮忙...

2 个答案:

答案 0 :(得分:1)

这一行

return View(model1);

查找名称与调用它的操作完全相同的视图。从PostValues操作调用此行假定存在视图PostValues.cshtml(显然不存在)。如果您仍想使用视图Index,则应明确指定:

if (!ModelState.IsValid)
{    
    return View("Index", model1);
}

答案 1 :(得分:1)

安德烈说。或者,您可以为PostValues方法添加其他标记:

[HttpPost, ActionName("Index")]
public ActionResult PostValues(CrossFieldValidation model1)
{
    if (!ModelState.IsValid)
    {    
        return View(model1);
    }
}