registering httpModules in web.config

后端 未结 5 1983
死守一世寂寞
死守一世寂寞 2020-12-29 05:34

I am trying to register a custom HttpHandler in the web.config file. MSDN\'s example shows an entry that is commented out...um which doesn\'t work so well.

5条回答
  •  南笙
    南笙 (楼主)
    2020-12-29 05:54

    The type value is in the format of {Class}, {assembly}.

    So in your case, it should be MyHttpModule, MyDllName

    Where MyDllName is the name of the compiled DLL.

提交回复
热议问题