"'Sys' is undefined" error running ASP.NET MVC application in IIS7 - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T15:37:25Zhttp://stackoverflow.com/feeds/question/655954http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/655954/sys-is-undefined-error-running-asp-net-mvc-application-in-iis70"'Sys' is undefined" error running ASP.NET MVC application in IIS7segaco2009-03-17T20:44:21Z2009-04-21T21:40:23Z
<p>Hi, I'm using the ASP.NET MVC in my web application. It uses AJAX (MicrosoftAjax.js, MicrosoftMvcAjax.js, jquery-1.3.1.min.js) to make the call from the view to the Delete action with this code:</p>
<pre><code><%= Ajax.ActionLink("Delete", "Delete", new { id=item.id }, new AjaxOptions { Confirm = "Are you sure you want to delete the record?", HttpMethod = "Delete", UpdateTargetId = "divAttributeList" }) %>
</code></pre>
<p>In the controller I uses this code to process the view request:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Delete)]
public ActionResult Delete(int id)
{
_service.DeleteAttribute(id);
return PartialView("List", _service.ListAttributes());
}
</code></pre>
<p>It works great when I run it on the ASP.NET Development Server but when I try to run the application on a IIS7 (Windows Vista or Windows Server 2008) I get the error </p>
<p><img src="http://i561.photobucket.com/albums/ss59/segaco/Error.png" alt="alt text" /></p>
<p>If i press Continue, the browser show me the next message</p>
<p><strong>The resource cannot be found.</strong></p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/655954/sys-is-undefined-error-running-asp-net-mvc-application-in-iis7/655971#6559714Answer by tvanfosson for "'Sys' is undefined" error running ASP.NET MVC application in IIS7tvanfosson2009-03-17T20:51:31Z2009-03-17T20:51:31Z<p>I would look at the paths for the javascript includes to make sure that they are correct for the path used in IIS7. I've taken to using Url.Content() to make sure that my paths are defined correctly with respect to the root path of the application.</p>
<pre><code> <script type='text/javascript'
src='<%= Url.Content( "~/Scripts/jquery-1.3.1.min.js" ) %>'>
</script>
</code></pre>