1 What Is
1 What Is
So, when we execute a VB6 or C++ program, the respective language compiler, compiles the
respective language source code into native code, which can then be understood by the underlying
operating system and hardware.
2. NON DOTNET applications can run directly on top of the operating system, where as
DOTNET applications run on top of a virtual environment called as Common Language
Runtime (CLR). CLR contains a component called Just In-Time Compiler (JIT),
https://www.youtube.com/watch?v=F-xfpETPtqM may you watch the whole video or for JIT
watch from 4.40minutes…….
which will convert the Intermediate language into native code which the underlying operating
system can understand.
What is ASP.NET?
1. PHP
2. Java
3. Ruby on Rails
4. Perl
When the client enters the URL of the web application in the browser, and submits the request.
The web server which hosts the web application, receives the request.
The application generates, the HTML and hands it over to the IIS (web server).
IIS sends the generated HTML to the client, who made the initial request.
The client browser will the interpret the HTML and displays the user interface.
All this communication, happens over the internet using HTTP protocol.
HTTP stands for Hyper Text Transfer Protocol. (this is why you see the http:// in the url)
A protocol is a set of rules that govern how two or more items communicate.