ASP.NET MVC Folder Controller Html.ActionLink - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:26:42Z http://stackoverflow.com/feeds/question/323088 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/323088/asp-net-mvc-folder-controller-html-actionlink 0 ASP.NET MVC Folder Controller Html.ActionLink Adron 2008-11-27T06:59:08Z 2008-11-27T08:06:12Z <p>I have the following code in my Site.Master page of an almost empty ASP.NET MVC Project. </p> <pre><code>&lt;li&gt; &lt;%= Html.ActionLink("Home", "Index", "Home")%&gt; &lt;/li&gt; &lt;li&gt; &lt;%= Html.ActionLink("Feed List", "FeedList", "Home")%&gt; &lt;/li&gt; &lt;li&gt; &lt;%= Html.ActionLink("Monitored Feeds", "MonitoredFeeds", "Home")%&gt; &lt;/li&gt; &lt;li&gt; &lt;%= Html.ActionLink("About", "About", "Home")%&gt; &lt;/li&gt; </code></pre> <p>I haven't added anything more than a Folder to the Views Folder called Feeds. In the Feeds folder I have two Views; FeedList.aspx and MonitoredFeeds.aspx. I also added the following code to the HomeController as below.</p> <pre><code> [HandleError] public class HomeController : Controller { public ActionResult Index() { ViewData["Title"] = "The Reporter"; ViewData["Message"] = "Welcome to The Reporter."; return View(); } public ActionResult About() { ViewData["Title"] = "About Page"; return View(); } public ActionResult FeedList() { ViewData["Title"] = "Feed List"; return View(); } public ActionResult MonitoredFeeds() { ViewData["Title"] = "Monitored Feeds"; return View(); } } </code></pre> <p>No matter what I do though, whenever I click on the links to the pages, the following error is displayed.</p> <h2>Server Error in '/' Application.</h2> <p>The view 'FeedList' or its master could not be found. The following locations were searched: ~/Views/Home/FeedList.aspx ~/Views/Home/FeedList.ascx ~/Views/Shared/FeedList.aspx ~/Views/Shared/FeedList.ascx Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. </p> <p>Exception Details: System.InvalidOperationException: The view 'FeedList' or its master could not be found. The following locations were searched: ~/Views/Home/FeedList.aspx ~/Views/Home/FeedList.ascx ~/Views/Shared/FeedList.aspx ~/Views/Shared/FeedList.ascx</p> <p>Source Error: </p> <p>An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. </p> <p>Stack Trace: </p> <p>[InvalidOperationException: The view 'FeedList' or its master could not be found. The following locations were searched: ~/Views/Home/FeedList.aspx ~/Views/Home/FeedList.ascx ~/Views/Shared/FeedList.aspx ~/Views/Shared/FeedList.ascx] System.Web.Mvc.ViewResult.FindView(ControllerContext context) +493 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +199 System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ActionResult actionResult) +105 System.Web.Mvc.&lt;>c__DisplayClass13.b__10() +39 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func<code>1 continuation) +385 System.Web.Mvc.&lt;&gt;c__DisplayClass15.&lt;InvokeActionResultWithFilters&gt;b__12() +61 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ActionResult actionResult, IList</code>1 filters) +386 System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +736 System.Web.Mvc.Controller.ExecuteCore() +180 System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +96 System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) +36 System.Web.Mvc.MvcHandler.ProcessRequest(HttpContextBase httpContext) +377 System.Web.Mvc.MvcHandler.ProcessRequest(HttpContext httpContext) +71 System.Web.Mvc.MvcHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext httpContext) +36 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +181 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) +75</p> <p><hr /></p> <p>Version Information: Microsoft .NET Framework Version:2.0.50727.3053; ASP.NET Version:2.0.50727.3053 </p> <p>Have I missed something? Do I need to add the Feeds folder somewhere? Does Feeds need to go where I have "Home" listed in the links? I've even tried that and still got the error.</p> <p>Thanks.</p> http://stackoverflow.com/questions/323088/asp-net-mvc-folder-controller-html-actionlink/323100#323100 7 Answer by sork for ASP.NET MVC Folder Controller Html.ActionLink sork 2008-11-27T07:09:18Z 2008-11-27T07:09:18Z <p>Your controller is called "Home", therefore your views should be in the Views/Home folder, not in Views/Feeds.</p> <p>The error message clearly states that it is searching for ~/Views/Home/FeedList.aspx and ~/Views/Home/FeedList.ascx</p> http://stackoverflow.com/questions/323088/asp-net-mvc-folder-controller-html-actionlink/323187#323187 6 Answer by Todd Smith for ASP.NET MVC Folder Controller Html.ActionLink Todd Smith 2008-11-27T08:06:12Z 2008-11-27T08:06:12Z <p>Create a FeedsController.cs and move these to that controller</p> <pre><code>public ActionResult FeedList() { ViewData["Title"] = "Feed List"; return View(); } public ActionResult MonitoredFeeds() { ViewData["Title"] = "Monitored Feeds"; return View(); } </code></pre> <p>Then fix these to use the Feeds controller</p> <pre><code>&lt;li&gt; &lt;%= Html.ActionLink("Feed List", "FeedList", "Feeds")%&gt; &lt;/li&gt; &lt;li&gt; &lt;%= Html.ActionLink("Monitored Feeds", "MonitoredFeeds", "Feeds")%&gt; &lt;/li&gt; </code></pre>