Jonathan.
Jonathan.

Reputation: 55534

Membership system in ASP.net

I'm going to use the membership system in ASP.net, but need to change it in 2 ways. The database which stores the users is Access, and I want to salt the password(etc) plus ask the user to enter details like links to their facebook pages etc which are stored in the database.

So how do I use access with the system?

And how can I change/add fields which are stored in the database (i know how to create them in the database btw, just how I get the membership system to ask for it and store it)

(I could make my own registration/user login system, except I don't know how to restrict access to pages, so how could I go about this?)

Links to tutorials/references would be great

Upvotes: 2

Views: 413

Answers (4)

Adam Pope
Adam Pope

Reputation: 3274

1) Use SQL Server Express edition. It's free, it's good, it works out of the box.
2) Check out the Profile providers for personalisation. http://msdn.microsoft.com/en-us/library/2y3fs9xs.aspx

Upvotes: 3

Chris
Chris

Reputation: 6315

And another on how to write a custom membership provider for the Access Database.

Upvotes: 4

Krunal
Krunal

Reputation: 3531

one more...

Membership Provider MSAccess

Upvotes: 1

David
David

Reputation: 73554

Here's a link explaining how to use Access: http://msdn.microsoft.com/en-us/library/44w5aswa.aspx

As for storing extra user information. Asp.NET provides this via personalization. Here are two links to get you going:

Video: http://www.asp.net/learn/videos/video-43.aspx Article: http://msdn.microsoft.com/en-us/magazine/cc163724.aspx

Upvotes: 2

Related Questions