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 autopostback in dropdownlist in asp net?

0 Answers  


What is CSS? What is the advantage os using CSS in ASP.NET Web Applications?

2 Answers   PCS,


Whats an assembly

2 Answers   IBM,


what are the web form events available in asp.net?

0 Answers  


In your ASP.NET 2.0 web application you want to display an image that is selected from a collection of images. What approach will you use to implementing this?

0 Answers   HCL,






State management in asp.net ?

8 Answers   Accenture,


can we transfer data from one page to another page using viewstate if so how?if not y?

37 Answers   AppShark, DataSync, Gtech, iGate, Wipro,


Usage of web.configuration ?

3 Answers   Microsoft,


What is the procedure to handle the process request using mhpm events fired? : asp.net mvc

0 Answers  


Can we use MSSql as backend in asp.net...if yes then How.?

0 Answers   MCN Solutions,


How To Send Value one page to Another Page On MasterMenu Click ? please Tell Me!

3 Answers   Accenture,


Is there any property names “isnavigating”?

0 Answers  


Categories