Search This Blog

Monday, June 8, 2009

How to handle: 'sys' is undefined.

Add this code in web.config if above error come:

<system.web>
  <httphandlers>
     <add verb="GET" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler" validate="false">
     </add>
   </httphandlers>
</system.web>

No comments:

Post a Comment