Asp.Net MVC and Sys is undefined
If you’ve run into the Sys is undefined message, check to make sure that you’ve included the following:
<script src="<%= Url.Content("~/Scripts/MicrosoftAjax.debug.js") %>" type="text/javascript"></script>
and
<script src="<%= Url.Content("~/Scripts/MicrosoftMvcAjax.debug.js") %>" type="text/javascript"></script>You can include them in your masterpage or each individual page.
Comments