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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T00:58:36+00:00 2026-06-01T00:58:36+00:00

I am using ASP.net membership, but I want to store additional information for client

  • 0

I am using ASP.net membership, but I want to store additional information for client while registration instead of default columns as membership provider does, so how can I customize the dbo.aspnet_Users table and change the code so that it doesn’t affect the other functionality and works fine?

Could somebody suggest me on it how can I achieve this?

  • 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-01T00:58:38+00:00Added an answer on June 1, 2026 at 12:58 am

    Use an ASP.NET Profile-Provider.

    https://web.archive.org/web/20211020111657/https://www.4guysfromrolla.com/articles/101106-1.aspx

    You can store any kind of additional information even binary(images).
    I’ve used The SqlProfileProvide myself in my currect application to let the user chose his startpage self.
    Therefor i only needed to add this to the web.config:

    <profile defaultProvider="AspNetSqlProfileProvider">
      <providers>
        <clear/>
        <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="RM2ConnectionString" applicationName="/ERP"/>
      </providers>
      <properties>
        <add name="Startpage"/>
      </properties>
    </profile>
    

    And i could write this property in codebehind:

    if(User.Identity.IsAuthenticated)
    {
        HttpContext.Current.Profile.SetPropertyValue("Startpage", startPage); //startPage is a String
        HttpContext.Current.Profile.Save();
    }
    

    and read it in the following way:

    if(User.Identity.IsAuthenticated)
    {
        Dim user = Membership.GetUser();
        Dim startPage = HttpContext.Current.Profile.GetPropertyValue("Startpage") as String;
    }
    

    You can store anything you want, see the link above for further informations.

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

Sidebar

Related Questions

Using ASP.NET membership, if I want to get information for the current user, I
I'm using asp.net membership, and need to make a call to Membership.GetUser() while I
ASP.NET 4.0 and C# I'm using the default membership provider with the SqlExpress DB
I am using asp.net MVC with the asp.net membership but I starting to think
We're using ASP.Net membership providers (the SQL Server provider), and I want to be
HI I am using asp.net mvc with asp.net membership. I want to have a
I'm using ASP.net membership system with SQL Server 2000 database. What I want to
I have an application in Asp.net and using sql server to store user information.
I am using membership in asp.net mvc 2 and i want to restrict users
I'm using Asp.net Membership provider. I want to know which event triggered when a

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.