What is ASP.NET? Part 1
ASP.NET is a server-side technology for developing web applications based on the Microsoft .NET Framework. Let’s break that jargon-filled sentence down. ASP.NET is a server-side technology; that is, it runs on the web server. Most web designers start their careers learning client-side technologies like HTML, JavaScript, and Cascading Style Sheets (CSS). When a web browser requests a web page created with only client-side technologies, the web server simply grabs the files that the browser (or client) requests and sends them down the line. The client is entirely responsible for reading the markup in those files and interpreting that markup to display the page on the screen. Server-side technologies, like ASP.NET, are different. Instead of being interpreted by the client, server-side code (for example, the code in an ASP.NET page) is interpreted by the web server. In the case of ASP.NET, the code in the page is
read by the server and used to generate HTML, JavaScript, and CSS that is then sent to the browser. Since the processing of the ASP.NET code occurs on the server, it’s called a server-side technology. As Figure 1.1 shows, the client only sees the HTML, JavaScript, and CSS. The server is entirely responsible for processing the server-side code.

WEB CLIENT :This is the software program that the person uses to interact to the web application. The client is usually a web browser, such as Internet Explorer or Firefox.
WEB SERVER: This is the software program located on the server. It processes requests made by the web client.
May 11, 2008 + Posted in It's geeky time +
