Where would you use an IHttpModule, and what are the
limitations of anyapproach you might take in implementing one?



Where would you use an IHttpModule, and what are the limitations of anyapproach you might take in i..

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 request in a
custom HTTP module.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

Where would you use an ihttpmodule, and what are the limitations if any?

0 Answers  


What are the advantages and disadvantages of viewstate ?

1 Answers  


What line in the following XML document will generate an error? <?xml version=?1.0?> <employees> <employee> <name>Bob Andcarrol</name> </employee> <employee> <name>Robert Burns</name> </employee> </employees> a) 6 b) 4 c) 1 d) There is no error

3 Answers   Syntax Softtech,


What is the difference between cache and cookies?

0 Answers  


What was the difference between machine.config and web.config files

17 Answers   Assurgent, NIIT, TCS,






What is deference between asp.net, vb.net, c# & j#

2 Answers  


What is web.config. How many web.config files can be allowed to use in an application ?

10 Answers   Accenture, BirlaSoft, Infosys, InterGraph, Satyam, Wipro,


when using personlization, how do you access over setting at runtime?

1 Answers  


what is view stat how it is use ?

2 Answers   Amazon,


Explain the main function of url routing system in asp.net mvc? : asp.net mvc

0 Answers  


How Session use Cookies in State Management?

0 Answers  


Create the Output by mearging 2 tables and taking common column sid from both you should not use database create table and data in it Randomly table 1 sid sname saddress 1 sa ampt 2 na hyd 3 ha hyd table 2 sid dno dname 1 12 stats 2 23 phy 3 12 stats OutPUt sid sname saddress did dname 1 sa ampt 12 stats 2 na hyd 23 phy 3 ha hyd 12 stats

1 Answers  


Categories