I Created a simple ASP MVC View but when i try to use Sass nothing happen in firefox or chrome. when i inspected the page in Chrome the following error appeared:
Request URL:http://localhost:29120/Views/UI/test.css
Request Method:GET
Status Code:404 Not Found
And network response is
<head>
<title>The resource cannot be found.</title>
enter code here
</head>
<body bgcolor="white">
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
<h2> <i>The resource cannot be found.</i> </h2></span>
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
<br><br>
<b> Requested URL: </b>/Views/UI/test.css<br><br>
<hr width=100% size=1 color=silver>
<b>Version Information:</b> Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34212
</font>
</body>
<!--
[HttpException]: Path '/Views/UI/test.css' was not found.
at System.Web.HttpNotFoundHandler.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-->
Index.cshtml
<head>
<link href="~/Views/UI/test.css" rel="stylesheet"/>
<title>title</title>
</head>
I checked IIS directory and the file does exist.
Currently I'm using MVS 2013 Ultimate Update 4, so any idea why it's not working?