How ASP and ASP.NET page works.

Answers were Sorted based on User's Feedback



How ASP and ASP.NET page works...

Answer / justlogin

When a web browser requests a page from a web server, the
web server (IIS) will first check if the request is for an
HTML page. If it is, the request is fulfilled by fetching
the files from the OS and then returning it to the client
(web browser). If the client is requesting an ASP.NET page,
IIS will pass the request to the ASP.NET runtime, which will
then process the application and return the output to the
client.
ASP.NET pages use the .aspx extension. This is to ensure
that ASP.NET is able to run side by side with classic ASP on
the same server, which uses the extension .asp.
One of the inherent problems with the HTTP protocol is its
stateless nature. Put simply, a request made by a user is
loaded into memory, fulfilled, and then unloaded. Subsequent
requests by the same user are treated just like any request;
the server makes no attempt to remember what the user has
previously requested. This stateless nature makes writing
web applications a challenge, because the application
developer must explicitly devise mechanisms to enable the
server to remember the previous state of the application.
Several mechanisms have been devised over the years, such as
cookies and the use of query strings for passing information
to and from the server and the client.
In classic ASP, you typically need to write pages of code in
order to preserve the state of the page after the user has
posted a value back to the server. In ASP.NET, all of these
mundane tasks (collectively known as state management) are
accomplished by the ASP.NET runtime. You will learn more on
this in the following sections.

Is This Answer Correct ?    10 Yes 1 No

How ASP and ASP.NET page works...

Answer / zeeshan

when a user places the request on web browser it goes to server thru http request which carries the request towards iis or asp.net web server 2.0 at web server then it calls the processrequest() method to complete the request then finally it produces http-response which sent back to the client which has placed the request this http-response first gets converted into html representation form then can easily be displayed on web browser I think it vl help to the beginners.

Is This Answer Correct ?    5 Yes 0 No

How ASP and ASP.NET page works...

Answer / sreyasmn

New in ASP.NET
Better language support
Programmable controls
Event-driven programming
XML-based components
User authentication, with accounts and roles
Higher scalability
Increased performance - Compiled code
Easier configuration and deployment
Not fully ASP compatible

Is This Answer Correct ?    5 Yes 10 No

Post New Answer

More ASP.NET Interview Questions

what is the use of untyped data set ?

5 Answers   TCS, Wipro,


How does session work?

0 Answers  


Why do we use sessions?

0 Answers  


What is content place holder?

0 Answers  


What is the difference between managed and unmanaged code? *******

2 Answers   Patni,






Explain asp.net web forms.

0 Answers  


What does passport and windows authentication mean in ASP.NET?

0 Answers   Amdocs,


how to send mail in asp.net

2 Answers  


2. Why did you choose this career?

2 Answers   Schwartz Oil, Swatz Oils,


What is preprocessor in .net?

0 Answers  


What is the asp.net mvc folder conventions? : asp.net mvc

0 Answers  


Why and where this web.config file is used?

0 Answers   Amazon,


Categories