Hary
Hary

Reputation: 5818

Password in Simple Membership Tables

I am using SimpleMembership Provider. I customized some fields on UserProfile Table. I have some queries over there.

  1. Is it possible to add password field in UserProfile table itself rather than storing seperately in webpages_Membership.
  2. Also in another project,without using any of the membership the users and roles tables are implemented. Are they can be mapped to simple membership now?

Thanks

Upvotes: 0

Views: 597

Answers (1)

balexandre
balexandre

Reputation: 75073

No, it is not possible, if you're going to use ASP.NET features, you need to use them as they are presented to you.

What you can do is use your own Membership Provider and then you can have anything you want in your users table.

Just follow up my answer on this, it is very simple to create your own membership provider and it gives you the ability to use exactly what you need and how you need it.

Upvotes: 3

Related Questions