Where would you use an iHTTPModule, and what are the
limitations of any approach you might take in implementing one?



Where would you use an iHTTPModule, and what are the limitations of any approach you might take in ..

Answer / 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 requesting a custom
HTTP module

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?

3 Answers   Satyam,


Difference between abstract factory pattern and factory method pattern in .NET with example.

3 Answers   ACS, IBM, Keane India Ltd,


Which object is used to encapsulate the state of the client and the browser in ASP.NET?

1 Answers   Sans Pareil IT Services,


What websites use asp.net?

1 Answers  


If you want to write your own dot net language, what steps you will you take care?

1 Answers  


suppose we have two object;obj1 and obj2 can we assign obj2 to one1; and if yes; then after assigning suppose we delete obj2 then obj1 will retain obj2 value or not.

3 Answers  


What is difference between asp.net and asp.net mvc? : Asp.Net MVC

1 Answers  


Define cookie.

1 Answers  


What is request and response in asp.net?

1 Answers  


Explain the differences between Server-side and Client-side code?

3 Answers  


You create an ASP.NET application for a hotel. The application contains a page that displays current weather conditions for the city in which the hotel is located. The application calls an XML Web service every 10 minutes to update the current weather conditions. A new page is then displayed for subsequent requests. You want the same page to be cached and retrieved from the cache during the time between calls to the XML Web service. You decide to use a Page directive to accomplish this goal. Which Page directive should you use? A . <%@ Cache Seconds="600 '' VaryByParam="Page" %> B . <%@ OutputCache Time="600" %> C . <%@ OutputCache Duration="600" VaryByParam="None" %> D . <%@ OutputCache Duration="600" %>

2 Answers   Syntax Softtech,


What are the differences between application object and session object?

1 Answers  


Categories