Contents tagged with Atlas
-
AJAXToolkit prefix in ASP.NET
If you want to prefix your code to use the AJAX Control Toolkit, add in the following item to your web.config.
<system.web>
<pages>
<controls>
<add tagPrefix="ajaxToolkit" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" />
</controls>
</pages>
I think it helps out with the Intellisense in Visual Studio .NET 2005 -
ASP.NET AJAX 1.0 is Released!
Its out. http://ajax.asp.net/
-
ASP.NET Podcast Show #83 - Writing a Custom AJAX Extender
This videocast will create a very basic extender control from scratch but will leave you with enough of the basics to fashion your own complex custom extender controls. Enjoy.
-
ASP.NET Podcast Show #81 - AJAX Control Toolkit Intro Video
-
ASP.NET Podcast Show #80 - JSON Data Format
-
Namespace change in ASP.NET 2.0 AJAX Release Candidate (Atlas)
Just wanted to throw out the one major change that I have seen in the ASP.NET 2.0 AJAX Release Candidate that I have seen so far. The namespaces have changed. What was previously Microsoft.Web has become System.Web. I think that this was a good to change to go ahead and move the code into what will most likely be the final namespace in the Orcas timeframe.
-
ComponentArt ASP.NET AJAX
-
ASP.NET Podcast Show #79 - Microsoft AJAX UpdatePanel and Clientside Page LifeCycle Video
-
ASP.NET Podcast Show #77 - Microsoft AJAX Library Beta 2 with Web Services
-
"'Sys' is undefined" in Atlas
Do you get this error in Microsoft Ajax / Atlas? I got it for the first time last night. I've heard about it in the forums. On my system, it appears to be a mismatch between web.config files and the code installed on my machine. I had an app that I had written under beta1. I pulled it over to a system with beta2. I got this error defined above. When I took the files and placed them into a project started under beta2, all my problems went away. Hope this is helpful if you get it.