Nikhil Hotari
- ASP.NET provides for partial page rendering. The AJAX Control Toolkit is an open source project available from CodePlex
- Web services (to expose JSON, etc.)
- Script Framework
- AJAX in the real world
- AJAX has become mainstream
- users expect it
- subtle use of AJX is usually effective
- don't have to go overboard with lots of AJAX
- it's about creating better UX
- fluid UI
- rich data viz
- intuitive data entry
- it's not just about updating page content
- AJAX Challenges
- script complexity
- indexability and SEO
- navigation an bookmarkability
- increasing user expectations
- diagnostics, tracing, and monitoring
Takehomes
- Keep your code clean by using templates
- pull data into your page on load for non-script users (like search engines), but use a script to css-hide the "stuff" that will by displayed richer by your scripts (since it's a script you won't get the hide rule unless you have scripts on)
- use css rules to hide/show, the css engine is much faster than the script engine, so your page will act faster
If you liked this post, please be sure to subscribe to my
RSS Feed.