Answer Posted / anil
Http handlers are special applications that typically
handle files with certain extension. For example when you
request a file with extension .asp IIS routes it to ASP
processor. But what if I want to handle files with my own
extensions say .bipin? Http handlers allow us to do just
that. Now, you might be thinking what is the use of a new
file extension? Consider a case where you want to generate
graphics on the fly. In such cases you will write an Http
handler that will do your task. Note that Http handlers are
typically called for the specific file extensions they are
designed for. If you have worked with ISAPI extensions in
past you will find this concept very familiar.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the boxing and unboxing concept in .net?
Can viewstate be accessed in another page?
What is page fragment caching?
What is a uri query?
What is a SESSION and APPLICATION object?
Explain what are delegates?
How do you design a website with multilingual support in ASP.NET ?
Explain the differences between managed and unmanaged code?
What threading model used in asp and asp.net?
What is difference between Lambda Expression and LINQ in ASP.NET?
How can you handle unmanaged code exceptions in asp.net?
What is the mvc framework?
How response object is related to asp's response object?
Why is an object pool required?
Explain asp.net page life cycle?