S
shapper
Hello,
I have been using Http handlers and I have two questions:
1. What does Property IsReusable really does and when should I use it?
2. And why should I add an httpHandler to my Web.Config?
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="handler.aspx"
type="HandlerExample.MyHttpHandler, HandlerTest"/>
</httpHandlers>
</system.web>
</configuration>
I am asking this because I got all this working without using 1 or
2.
Thank You,
Miguel
I have been using Http handlers and I have two questions:
1. What does Property IsReusable really does and when should I use it?
2. And why should I add an httpHandler to my Web.Config?
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="handler.aspx"
type="HandlerExample.MyHttpHandler, HandlerTest"/>
</httpHandlers>
</system.web>
</configuration>
I am asking this because I got all this working without using 1 or
2.
Thank You,
Miguel