How ASP and ASP.NET page works.
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What is the difference between ASP and ASP.NET?
4 Answers Sans Pareil IT Services, TCS,
What is the postback property in asp.net?
What kind of data we can store in viewstate?
How do you do client-side validation in .net? How to disable validator control by client side javascript?
I have one application, one user purchase some products in my application? and another person came he is also purchase some products?how can we identify which user purchase which items? my answer is by using session id? but i dont know how? can u give me programming for that?
In a page u have Web user controls . So what is the order in which the Page life Cycles takes place?
What is Stateless ASP or ASP.Net?
What are user controls?
What is skin in asp.net?
What is the use of web.config file?
3. What goals do you have in your career?
How do u optimize a query in asp.net?