Configure ELMAH without having to modify web.config except for httpmodules and httphandler

Posted by ggonsalv on Stack Overflow See other posts from Stack Overflow or by ggonsalv
Published on 2010-05-06T04:04:18Z Indexed on 2010/05/06 4:08 UTC
Read the original article Hit count: 402

Filed under:
|

I want to create seperate config (for example elmah.config) with just

 <configSections>     
       <sectionGroup name="elmah">
       <section name="errorLog"  type="Elmah.ErrorLogSectionHandler,  Elmah" />
    </sectionGroup>
 </configSections> 
    <elmah> 
       <errorLog type="Elmah.SqlErrorLog,Elmah"  connectionString="....." /> 
 </elmah>

I know I will have to add the handler and httpmodule sections to plug-in to ASP.Net 1.1

I just want to seperate out the above portion.

Also it is archaic .Net 1.1 so bear with me ...

© Stack Overflow or respective owner

Related posts about elmah

Related posts about asp.net-1.1