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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:50:16+00:00 2026-05-28T06:50:16+00:00

I am currently using asp.net membership provider and it has several tables as shown

  • 0

I am currently using asp.net membership provider and it has several tables as shown below!

enter image description here

And in this there are two main tables where the info of user is stored such as username,password,email etc..

Now I have password column in Membership table.So I would like to include a copy of that in the users table.

So how can I do that?

  • 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-28T06:50:17+00:00Added an answer on May 28, 2026 at 6:50 am

    Actually creating a “password” field in the Users table and copying the content of the Membership table is not a good idea, as already pointed out by HLGEM in his comment.

    If you really want to query the Users table and get the password from the Membership table in the same query, why don’t you just join the tables?

    SELECT aspnet_Membership.Password, aspnet_Users.*
    FROM aspnet_Membership 
    INNER JOIN aspnet_Users ON aspnet_Membership.UserId = aspnet_Users.UserId
    

    If you need this query really often, you can create it as a view:

    CREATE VIEW YourUserView AS
    SELECT aspnet_Membership.Password, aspnet_Users.*
    FROM aspnet_Membership 
    INNER JOIN aspnet_Users ON aspnet_Membership.UserId = aspnet_Users.UserId
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to disable ASP.Net membership provider from using a web.config? Currently
I'm currently using the SQL Membership provider for ASP.NET, which uses GUIDs for the
i am using asp.net built-in membership and role provider. In my application Admin Create
I am currently building a custom Membership Provider for my Asp.net MVC website. I
We are using the ASP.NET Membership Provider for managing the users in our application.
I'm building a web application using the ASP.net Membership Provider to manage, Authentication/Authorisation. I've
I've been playing around with using MySql as the membership provider for asp.net mvc
I have website that uses ASP.net Membership Provider. This web site will be served
I'm using the ASP.NET Membership provider to handle all membership activities on my current
I'm using ASP.NET MVC. I inserted ASP.NET membership tables into my database and i'm

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.