i have this problem some weeks ago and my problem was on Redirect to login.aspx. look if you have some redirections, if yes then place it into Page init method to work without cause problem to ajax.
Main Topics
Browse All TopicsI am trying to add AJAX to an existing project but I can not get by a 'Sys' undefined error. It appease that this is a configuration issue but I clearly do not have enough experience with this to figure it out.Any help is much appreciated!
I have referenced the "AJAXExtentionsToolbox.dll
Here is my web.config file. I have tryed several solutions without success.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thanks for your help so far junges and sjors1309!
Yes, I installed AJAX and added it as a reference. Also, "AJAXExtensionsToolbox.dll
Also, the application compiles without any issue. only when opening the page do I recieve the "SYS" error.
Also, I created an app where I used an UpdatePanel which worked fine but when I tryed to add AJAX to an existing app is where I ran into problems. I looked for some time to find the difference in the 2 apps where I thought the issue could be without success.
1. The version of Ajax that you installed onto this server? Is it the .Net 2.0 compatible? System.Web.Extension.dll in default Ajax deployment for VS2008 is version 3.5.x. Same counts for toolbox. Try copying the System.Web.Extensions.dll into bin (remove version info from declaration in web.config)
2. The application that you want to enrich with Ajax. Is it updatable? Did you do a full deployment/publish to test this page, or just copied this page to the webserver?
I assume that your Gac has System.Web.Extensions installed. But maybe it's the wrong version.
You no doubt have an installation of Ajax (version ASP.Net2) with this dll in it (it's in the installation package) - just try copying the dll into the bin dir of your application before running it.
If you can post the sourcecode of your page (the one that generated the Sys is not defined error) - I mean the HTML markup and a screenshot of the Project properties - References page (grey out lines that you don't want to share)
You don't need to register the assembly in the page. It's registered in your web.Config.
If you are using MasterPage then include the follow only on the MasterPage and not include it on the other pages:
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:Scrip
Add the follow on every page
<%@ Register assembly="AjaxControlToolk
I had the same problem I put the problem example and solution to my problem on a free webpage
See if this helps:
http://dryrtf.freewebspace
theres also a link to the forum where I had help troubleshooting it.
I now detect something I didn't see before. You use a trigger but specify a button that's within the updatepanel. Triggers are to my knowledge meant to trigger updatepanels from controls outside of the panel itself. Controls that are inside the panel cause postbacks to occur by default.
You sould remove the trigger, or create another button outside the panel and use it's ID in the trigger declaration
Can you give this a try?
Business Accounts
Answer for Membership
by: MarcGraffPosted on 2008-05-31 at 06:53:37ID: 21683725
My page:
Select allOpen in new window