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 8008617
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T18:11:37+00:00 2026-06-04T18:11:37+00:00

I have adonet appender and I defined additional column. I want to get the

  • 0

I have adonet appender and I defined additional column. I want to get the userId from the asp.net session and do log.

According to this page there is %aspnet-session{key} pattern which I use like this:

<parameter>
    <parameterName value="@userId" />
    <dbType value="String" />
    <size value="255" />
    <layout type="log4net.Layout.PatternLayout">
      <conversionPattern value="%aspnet-session{current_member}" />
    </layout>
  </parameter>

and I got the following result in the database:

/LM/W3SVC/1/ROOT/trunk-1-129718741958458380spnet-session{current_member}

What I am doing wrong here?

  • 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. Editorial Team
    Editorial Team
    2026-06-04T18:11:39+00:00Added an answer on June 4, 2026 at 6:11 pm

    I found a solution to my problem.

    I just refactored it to serve my needs:

    public class Log4NetAspNetProperty
        {
            private const string PropertyNamePrefix = "log4net_app_";
            private const string PropertyDefaultValue = null;
    
            private readonly string propertyName;
            private readonly object propertyValue;
    
            public string Name { get { return propertyName; } }
    
            private Log4NetAspNetProperty(string propertyName, object propertyValue)
            {
                if (String.IsNullOrWhiteSpace(propertyName)) throw new ArgumentNullException("propertyName");
    
                this.propertyName = propertyName;
                this.propertyValue = propertyValue;
    
                if (HttpContext.Current != null)
                    HttpContext.Current.Items[GetPrefixedPropertyName()] = propertyValue;
            }
    
            public override string ToString()
            {
                if (HttpContext.Current == null)
                    return PropertyDefaultValue;
    
                var item = HttpContext.Current.Items[GetPrefixedPropertyName()];
                return item != null ? item.ToString() : PropertyDefaultValue;
            }
    
            private static string GetPrefixedPropertyName()
            {
                return String.Format("{0}{1}", PropertyNamePrefix, PropertyDefaultValue);
            }
    
            public static void CurrentUserId(object userId)
            {
                var property = new Log4NetAspNetProperty("CurrentUserId", userId);
                log4net.ThreadContext.Properties[property.Name] = property;
            }
    
            public static void CurrentUrl(object url)
            {
                var property = new Log4NetAspNetProperty("CurrentUrl", url);
                log4net.ThreadContext.Properties[property.Name] = property;
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP.Net MVC application that uses SQL Server 2005 via NHibernate. I
I have Entity Data Model using ADO.NET Entity Data Model (using auto generate from
I have an asp.net, c# application using MSSQL 2008 server. At some point, i
I have some existing code that retrieves data from a database using ADO.NET that
So, I have followed this instruction from ADO.NET team blog to try to make
I have ADO.Net code as below, that calls a stored procedure. Within the stored
I have an ADO.NET Managed Data Provider that is registered in machine.config in DbProviderFactory
I have a ADO.NET/TSQL performance question. We have two options in our application: 1)
Suppose I have an ADO.NET DataTable that I was to 'persist' by saving it
I have tried with ado.net create table columnName with unique name. as uniquename I

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.