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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:48:37+00:00 2026-05-11T22:48:37+00:00

I don’t know what I am missing, but I added Profile properties in the

  • 0

I don’t know what I am missing, but I added Profile properties in the Web.config file but cannot access Profile.Item in the code or create a new profile.

  • 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-05-11T22:48:37+00:00Added an answer on May 11, 2026 at 10:48 pm

    I had the same problem today, and learned a lot.

    There are two kinds of project in Visual Studio — “Web Site Projects” and “Web Application Projects.” For reasons which are a complete mystery to me, Web Application Projects cannot use Profile. directly… the strongly-typed class is not magically generated for you from the Web.config file, so you have to roll your own.

    The sample code in MSDN assumes you are using a Web Site Project, and they tell you just to add a <profile> section to your Web.config and party on with Profile.property, but that doesn’t work in Web Application Projects.

    You have two choices to roll your own:

    (1) Use the Web Profile Builder. This is a custom tool you add to Visual Studio which automatically generates the Profile object you need from your definition in Web.config.

    I chose not to do this, because I didn’t want my code to depend on this extra tool to compile, which could have caused problems for someone else down the line when they tried to build my code without realizing that they needed this tool.

    (2) Make your own class that derives from ProfileBase to represent your custom profile. This is easier than it seems. Here’s a very very simple example that adds a “FullName” string profile field:

    In your web.config:

    <profile defaultProvider="SqlProvider" inherits="YourNamespace.AccountProfile">
    
    <providers>
         <clear />
         <add name="SqlProvider"
              type="System.Web.Profile.SqlProfileProvider"
              connectionStringName="sqlServerMembership" />
    </providers>
    
    </profile>
    

    In a file called AccountProfile.cs:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Profile;
    using System.Web.Security;
    
    namespace YourNamespace
    {
        public class AccountProfile : ProfileBase
        {
            static public AccountProfile CurrentUser
            {
                get { return (AccountProfile)
                             (ProfileBase.Create(Membership.GetUser().UserName)); }
            }
    
            public string FullName
            {
                get { return ((string)(base["FullName"])); }
                set { base["FullName"] = value; Save(); }
            }
    
            // add additional properties here
        }
    }
    

    To set a profile value:

    AccountProfile.CurrentUser.FullName = "Snoopy";
    

    To get a profile value

    string x = AccountProfile.CurrentUser.FullName;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I don't know why, but this code worked for me a month ago... maybe
Don't know if this is possible, but I have some code like this: val
don't know better title for this, but here's my code. I have class user
Don't know how to frase this but I found this code wich works as
don't know if the title describes anything about what I'm trying to say but
Don't really know how to formulate the title, but it should be pretty obvious
Don't know how to google for such, but is there a way to query
Don't know why but font is not displaying.Please help. CSS(in css folder): style.css: @font-face
Don't know what happened, but it just hangs on Type Space loading (4%) and
Don't know whats exactly going on, but it's definitely killing my time for nothing.

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.