MVC重定向到另一个页面结果错误404资源未找到

时间:2018-11-23 15:01:06

标签: c# asp.net-mvc asp.net-mvc-4 asp.net-mvc-3 model-view-controller

我正在尝试重定向到另一个页面,导致错误404无法解决

我的视图页面UserDashBoard.cshtml“具有代码,

<fieldset >
    <legend > User DashBoard </legend>

    @if(Session["UserName"] != null)
    { <text >
    Welcome @Session["UserName"].ToString() </text>
    }

    @using (Html.BeginForm("GetSurvey", "DashboardController"))
    {
    <input type="submit" value="Some text" />
    }
</fieldset>

我想使用控制器GetSurvey.cshtml重定向到页面DashboardController.cs

GetSurvey就像

@model List<SelectListItem>

@{
    ViewBag.Title = "GetSurvey";
}

<h2>Survey List</h2>
<fieldset>
    <legend> User DashBoard </legend>

    @using (Html.BeginForm("GetSurvey", "DashboardController", FormMethod.Post))
    {
        @Html.DropDownList("ddlCustomers", Model)
        <br />
        <br />
        <input type="submit" value="Submit" />
    }
</fieldset>

DashboardController

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace Survey.Controllers
{
    public class DashboardController : Controller
    {
        //
        // GET: /Dashboard/

        public ActionResult GetSurvey()
        {
            List<SelectListItem> customerList = Survey();
            return View(customerList);
          //  return View();
        }

        public ActionResult GetSurvey(string ddlCustomers)
        {
            List<SelectListItem> customerList = Survey();
            if (!string.IsNullOrEmpty(ddlCustomers))
            {
                SelectListItem selectedItem = customerList.Find(p => p.Value == ddlCustomers);
                ViewBag.Message = "Name: " + selectedItem.Text;
                ViewBag.Message += "\\nID: " + selectedItem.Value;
            }
            return View(customerList);
        }
        private static List<SelectListItem> Survey()
        {
            SurveyAppEntities ObjectSur=new SurveyAppEntities();
            List<SelectListItem> customerList = (from p in ObjectSur.Surveys.AsEnumerable()  
                                                 select new SelectListItem
                                                 {
                                                     Text = p.Title,
                                                     Value = p.ID.ToString()
                                                 }).ToList();

            return customerList;
        }
    }
}

我不知道为什么它不重定向到上面提到的页面,我在重命名HomeController时启动项目时遇到了同样的问题。

路线:

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.MapRoute(
        name: "Default",
        url: "{controller}/{action}/{id}",
        defaults: new { controller = "Home", action = "Login", id = UrlParameter.Optional }
    );
}

1 个答案:

答案 0 :(得分:1)

这是检查应用程序中正在发生什么的简单方法。

互联网上存在一些用于记录HTTP / HTTPS流量的工具,fiddler也是如此,当浏览服务器上的链接时,您可以看到正在发送什么数据和正在请求什么URL。从您的项目。 要捕获本地数据,您需要进入项目设置,并显示特定的URL,只需在本地主机后附加.fiddler。 例如http://localhost.fiddler:4444/MyTestApp

以上内容将在调试应用程序时为您提供更多数据。

现在,只需从视图中的 DashboardController 中删除 Controller 部分,该部分现在应指向正确的URL,也请不要装饰您的GetSurvey默认情况下,默认使用[POST]作为GET方法,您可以使用@ Html.BeginForm方法的重载来覆盖此行为。

@using (Html.BeginForm("someAction", "someController", FormMethod.Get))
{
    ...
}