views:

24

answers:

1

When your vs.net project is type website, what's the namespace/dll you reference in your handler web.config setting?

you normally have to do:

"YourNameSpace.Class, Class"
A: 

If you handler has no namespace you can just do:

<add verb="*" path="Handler.ashx" type="Handler"/>
Matt Dearing