Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 125705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T05:12:05+00:00 2026-05-11T05:12:05+00:00

By default, ASP.NET records all uncaught exceptions to system Event Log. I’m aware of

  • 0

By default, ASP.NET records all uncaught exceptions to system Event Log. I’m aware of the fact that one should have a proper logging facility in place, but this is better than nothing and it serves well as a temporary solution.

I would like to be able to filter efficiently the events in the log. I learned that, when logging programmatically, you can set a custom value for the Source column in the event log via:

EventLog eventLog = new EventLog('Application'); eventLog.Source = 'My custom name'; eventLog.WriteEntry('Some error description ...', EventLogEntryType.Error); 

However, ASP.NET sets this value to ‘ASP.NET’ followed by its version. I briefly checked the documentation of web.config, but did not find an obvious place to change it. I wonder if it can be changed at all.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T05:12:06+00:00Added an answer on May 11, 2026 at 5:12 am

    Your best bet is to use the source property as intended, but use an installer class in your installer to set up the registry at install time (under Admin), eg.:

     using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Configuration.Install; using System.Diagnostics;  namespace InstallerClasses {     [RunInstaller(true)]     public partial class EventLog : Installer     {         private EventLogInstaller eventLogInstaller;          ///          /// Creates the event log for MyApp         ///          public EventLog()         {             InitializeComponent();              // Create an instance of an EventLogInstaller.             eventLogInstaller = new EventLogInstaller();              // Set the source name of the event log.             eventLogInstaller.Source = 'MySource';              // Set the event log that the source writes entries to.             eventLogInstaller.Log = 'Application';              // Add myEventLogInstaller to the Installer collection.             Installers.Add(eventLogInstaller);         }     } }  

    And make sure it gets run as a Custom Action in your installer.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Brad Wilson states that The default templates in ASP.NET MVC are done in code.
What is default hash algorithm that ASP.NET membership uses? And how can I change
I've a very basic ASP.NET MVC application that uses the default routing. Now I
Default ASP.NET MVC project has one MapRoute like routes.MapRoute( Default, {controller}/, new { controller
It seems that the default ASP.NET MVC2 Html helper generates duplicate HTML IDs when
The default ASP.NET MVC project sets up a Models directory that I don't know
I'm working on an ASP.NET project that replaces many existing paper forms. One of
The default ASP.NET web server that launches from within Visual Studio (Casini) is a
i have taken the default asp.net mvc template and customized to work for me.
In ASP.NET MVC (default routing),I'd like to use a URL like this to return

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.