Abhimanyu Aryan

Abhimanyu Aryan

  • NA
  • 35
  • 8.4k

Problem with basic code in asp.net code in Visual Studio Mac

Nov 19 2016 10:05 AM
This is my basic code & It doesn't run. I don't why....I have errors when running application 
 
HomeController.cs
 
using System.Web.Mvc;
using System.Web.Routing;

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

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


System.InvalidOperationException

The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched: ~/Views/Home/Index.aspx ~/Views/Home/Index.ascx ~/Views/Shared/Index.aspx ~/Views/Shared/Index.ascx ~/Views/Home/My Name is Khan & I'm not a Terrorist.master ~/Views/Shared/My Name is Khan & I'm not a Terrorist.master ~/Views/Home/My Name is Khan & I'm not a Terrorist.cshtml ~/Views/Home/My Name is Khan & I'm not a Terrorist.vbhtml ~/Views/Shared/My Name is Khan & I'm not a Terrorist.cshtml ~/Views/Shared/My Name is Khan & I'm not a Terrorist.vbhtml

Description: HTTP 500.Error processing request.

Details: Non-web exception. Exception origin (name of application or object): System.Web.Mvc.

Exception stack trace:
at System.Web.Mvc.ViewResult.FindView (System.Web.Mvc.ControllerContext context) [0x00089] in :0 at System.Web.Mvc.ViewResultBase.ExecuteResult (System.Web.Mvc.ControllerContext context) [0x0003b] in :0 at System.Web.Mvc.ControllerActionInvoker.InvokeActionResult (System.Web.Mvc.ControllerContext controllerContext, System.Web.Mvc.ActionResult actionResult) [0x00000] in :0 at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive (System.Collections.Generic.IList`1[T] filters, System.Int32 filterIndex, System.Web.Mvc.ResultExecutingContext preContext, System.Web.Mvc.ControllerContext controllerContext, System.Web.Mvc.ActionResult actionResult) [0x0000b] in :0 at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive (System.Collections.Generic.IList`1[T] filters, System.Int32 filterIndex, System.Web.Mvc.ResultExecutingContext preContext, System.Web.Mvc.ControllerContext controllerContext, System.Web.Mvc.ActionResult actionResult) [0x0004f] in :0
 

Answers (2)