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 are the different ways you would consider sending data across pages in ASP (i.e between asp to asp)?
Explain about solution explorer window?
What are cookies in your browser?
Why is global asax is used?
Describe Segmentation With Paging?
Differentiate the session object and application object?
What is class and object in asp.net?
How would you turn off cookies on a page of a website?
What is a session government?
Differentiate between Server.Transfer and Response.Redirect with functionality? Why we can choose one over the other?
Which property is used to identify the Page is Post Back in ASP.NET?
What is the difference between sealed vs static class?
What is meant by server side scripting?
If we remove web.config or machine.config from the application then, is this application will works?
How do you do Client-side validation in .Net?