Sign in | Join
Last post 12-26-2006 11:49 AM by bitmask. 1 replies.
Sort Posts: Oldest to newest Newest to oldest
In VWD2005, How are type names from App_Code referenced in web.config? For example, if I want to create a config section handler, how do I specify in web.config the types to use if my config section handler code is in App_Code?
You can use App_Code as the assembly name, e.g:
<httpHandlers> <add type="MyClass, App_Code" ... /></httpHandlers>