Tagged Questions
4
votes
2answers
813 views
Add custom error handler at beginning of modules section in web.config (not manually)
Is there a way to put an error handler HTTPModule at the beginning of the modules section in web.config without doing this manually?
I've tried the supplemental web.config approach like this:
...
3
votes
1answer
889 views
How do I set CallStack=“false” but still get the exception in a custom error handler?
I've got a pretty custom SharePoint 2010 Server solution. We have a custom HttpModule setup for error handling (relevant code provided below):
public class ErrorHandlerModule : IHttpModule
{
...