Setting permissions to write to Event Log
I have several ASP.Net applications that write errors and login details to a specific key in the event log.
The key is created OK but the users don't have permission to write to the logs, instead the events all go to the generic Application log.
After some searching I found this article: http://forums.techarena.in/server-security/85026.htm
Which basically says to change the CustomSD DWORD value under the key with the application name and add (A;;0x0002;;;AU) - this gives permission to write to the event log for all authenticated users.
Posted: 4. November 2008 17:09 by cutty
Categories: ASP.Net Coding Hints and Tips | General IT Gear
Tags: write permissions to event log asp.net
UpdatePanel causing full page postback using ASP.Net Ajax
This took me several hours to debug. Had all the correct settings in web.config, right assemblies referenced etc.
However the web.config had:
<xhtmlconformance mode="Legacy" />
hidden in it. With this setting the Ajax client-side stuff wasn't working so a full postback kept happening.
Posted: 15. July 2008 15:27 by cutty
Categories: ASP.Net Coding Hints and Tips
Tags: ajax, asp.net, updatepanel