When your vs.net project is type website, what's the namespace/dll you reference in your handler web.config?
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:
开发者_如何学Go"YourNameSpace.Class, Class"
If you handler has no namespace you can just do:
<add verb="*" path="Handler.ashx" type="Handler"/>
精彩评论