Learning ASP.Net AJAX (2)

December 8th, 2006 · No Comments

Email This Post Email This Post

After letting ASP.Net Web Administration configured my web.config. I received “sys is undefined” error on the page whenever there is AJAX control on the page. There is nothing wrong with the code. All you need to do is to ensure the following statements exist in web.config:

<location path=”ScriptResource.axd”>
<system.web>
<authorization>
<allow users=”*”/>
</authorization>
</system.web>
</location>

<add verb=”GET” path=”ScriptResource.axd” type=”Microsoft.Web.Handlers.ScriptResourceHandler” validate=”false”/#62

Here is the related link:

http://blogs.wdevs.com/sebastien.lachance/archive/2006/11/23/17758.aspx

Related posts:

  1. Learning ASP.Net AJAX (1)


Tags: Programming

0 responses so far ↓

  • There are no comments yet...Kick things off by filling out the form below.

Leave a Comment

Got blog? Tick to show your latest post here.

*
To prove you're a person (not a spam script), type the security text shown in the picture. Click here to regenerate some new text.
Click to hear an audio file of the anti-spam word

© 2006–2010 Now Eating — Sitemap