Where would you use an IHttpModule, and what are the
limitations of anyapproach you might take in implementing one?
Answer Posted / guest
One of ASP.NET?s most useful features is the extensibility
of the HTTP pipeline, the path that data takes between
client and server. You can use them to extend your ASP.NET
applications by adding pre- and post-processing to each
HTTP request coming into your application. For example, if
you wanted custom authentication facilities for your
application, the best technique would be to intercept the
request when it comes in and process the request in a
custom HTTP module.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is global.asax file used for?
What is a global postback url?
What tags do you need to add within the asp:datagrid tags to bind columns manually? Give an example.
Which method do you use to enforce garbage collection in .net?
What are the different authentication modes in asp.net?
Which data type does the rangevalidator control support?
Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?
What is the difference between exe and dll?
What is application state?
What is data caching?
What is a uri query?
COM+ Used ________________ Isolation Level
How many types of validators are there in asp net?
explain code with multi inhertance
Describe the sequence of action takes place on the server when ASP.NET application starts first time?