yjeev...@gmail.com
unread,Dec 29, 2010, 1:43:17 AM12/29/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ELMAH
Hi,
I have created a folder Admin and i configured in web.config file for
elmab.axd.
<security allowRemoteAccess="1" />
<location path="admin">
<system.web>
<httpHandlers>
<add verb="POST,GET,HEAD" path="elmah.axd"
type="Elmah.ErrorLogPageFactory, Elmah" />
</httpHandlers>
<authorization>
<allow users="admin"/>
<deny users="?"/>
</authorization>
</system.web>
</location>
When i am trying to access .axd file i am not able to get the
information and I want to provide user name and password to access it.
How can i configure this in my application.