Winzip Tutorial Here Windows Compression
Free Vista Class Free Windows Class Directory Structure Tutorial
Basic Computer File Systems Tutorial (Mac)
Beyond ASP.NET ASP.NET is a server-side technology for building web applications. Almost all the work happens on the web server and not the web browser. Whenever you perform an action in an ASP.NET page-such as clicking a button or sorting a GridView-the entire page must be posted back to the web server. Any significant action on a page results in a postback. If you think about it, this is incredibly inefficient. When you perform a postback in an ASP.NET page, the entire page must be transported across the Internet from browser to server. Next, the .NET class that corresponds to the page must re-render the entire page again from scratch. Finally, the finished page must be sent back across the Internet to the browser. This whole long, slow, agonizing process must occur even if you are updating a tiny section of the page. Using a server-side technology such as ASP.NET usually results in a bad user experience. Every time a user performs some action on a page, the universe temporarily freezes. Whenever you perform a postback, the browser locks, the page jumps, and the user must wait patiently, twiddling his thumbs, while the page gets reconstructed. All of us have grown accustomed to this awful user experience. However, we would never design our desktop applications in the same way. When the members of the ASP.NET team invented ASP.NET in the late 1990s, there was good reason to embrace the server-side. Getting a page that was written in JavaScript to work consistently across different browsers, and even across different versions of the same browser was very difficult. The server side was safe and reliable. Web developers are discovering that if they want to build truly great applications, they need to leave the safety of the server side and enter the wilds of the client side. Google has hacked out a path for us by creating several proof-of-concept web applications that demonstrate that you can build reliable, user-friendly, web applications that execute entirely in the browser without the need for postbacks. [See: Google Maps, Google Docs, Google Suggest and Google Gmail] What is Ajax? Ajax is a blanket term. The term Ajax was coined by Jesse James Garrett back in 2005, primarily as a cool way to sell a set of technologies and a new approach to web development. Ajax refers to using a set of specific browser technologies to build web pages. None of these technologies are new and consist of three main components: XMLHttpRequest, DOM and JavaScript. Especially with the advent of ASP.NET, the world of web programming has been simplified. Frameworks offer a think layer of abstraction over basic HTML and HTTP interaction, and the ASP.NET development environment makes it easy with automated code generation and remote debugging.
Content Copyright © 2009 LVS Associates Powered by osCommerce