开发者

MVC return view() issue

开发者 https://www.devze.com 2023-03-09 07:42 出处:网络
I\'m very new to MVC, and am attempting to add further functionality to an app that has already been developed.

I'm very new to MVC, and am attempting to add further functionality to an app that has already been developed.

I'm having trouble returning a View with posted results after validation has rendered the model invalid.

My controller has three actions of note:

public ActionResult Create(开发者_运维问答int workID)

[HttpParamAction]
[HttpPost]
public ActionResult SaveNormal(WorkViewModel workView)

[HttpParamAction]
[HttpPost]
public ActionResult SaveAddAnother(WorkViewModel workView)

Because of previous requirement, I've had to change the submit action so that one of the two above are called with the posted results. Everything works fine except is I'm trying to post back due to the model state being invalid, which I'm attempting to with the following:

if (!ModelState.IsValid)
    return View("Create", workView);

It does take me to the create (Create.aspx) view, but the URL is Work/Action, rather than Work/Create, meaning that when I resave, Work/Action is not found.

I'm not sure if this is a routing issue, but have supplied routes below (which are basically the default I think...):

public static void RegisterRoutes(RouteCollection routes)
{

    // This is the original
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.MapRoute(
        "Default", // Route name
        "{controller}/{action}/{id}", // URL with parameters
        new { 
            controller = "Home", 
            action = "Index", 
            id = UrlParameter.Optional 
        } // Parameter defaults
    );
}

protected void Application_Start()
{
    AreaRegistration.RegisterAllAreas();
    RegisterRoutes(RouteTable.Routes);
}

Any help will be much appreciated!


the URL is based on the action name; not on the view name. You probably need to RedirectToAction("Create"...) and issue View() from there

0

精彩评论

暂无评论...
验证码 换一张
取 消