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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 106k
  • Answers 106k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer you could also use a wrapper like launch4j which will… May 11, 2026 at 8:55 pm
  • Editorial Team
    Editorial Team added an answer Aptana Studio is pretty good. It has intellisense for html… May 11, 2026 at 8:55 pm
  • Editorial Team
    Editorial Team added an answer Well what size do you want your buttons to be?… May 11, 2026 at 8:55 pm

Related Questions

I've been having trouble getting my ASP.NET application to automatically log users into the
What assemblies are loaded by default when you create a new ASP.NET 2.0 Web
I've been told that ASP.NET is multithreaded by default in IIS. How is this
We're planning to use standard ASP.NET user authentication for our application. However, by default

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.