G
Guest
Let's say I have a class named GenericImageHandler in namespace BillRyan and
I'm storing it in the App_Code folder in a 2.0 application. What does the
web config setting look like? Here's what I'm using but each time the
application starts, I get a configuration error telling me that i'm not
specifying the type correctly. What am I doing wrong? - I'm having this
problem with both the Beta 2 and the Sept CTP. Also, I've double and tripled
checked spelling and namespaces, [the class is definitely in App_Code], have
added a space after the comma and removed it as it is below, and verified
that I don't have any spaced after the App_Code. This happens btw with all
file types
<httpHandlers>
<add verb="*" path="*.gif"
type="BillRyan.GenericImageHandler,App_Code" />
</httpHandlers>
I'm storing it in the App_Code folder in a 2.0 application. What does the
web config setting look like? Here's what I'm using but each time the
application starts, I get a configuration error telling me that i'm not
specifying the type correctly. What am I doing wrong? - I'm having this
problem with both the Beta 2 and the Sept CTP. Also, I've double and tripled
checked spelling and namespaces, [the class is definitely in App_Code], have
added a space after the comma and removed it as it is below, and verified
that I don't have any spaced after the App_Code. This happens btw with all
file types
<httpHandlers>
<add verb="*" path="*.gif"
type="BillRyan.GenericImageHandler,App_Code" />
</httpHandlers>