views:

86

answers:

4

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

+2  A: 

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

David Stratton
+1  A: 

one more...

Membership Provider MSAccess

Krunal
+1 for you as well. I like the 4Guys approach to teaching.
David Stratton
+4  A: 

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

Chris
+1. Nice article, easy to follow.
David Stratton
+1 For the link. I'd still go with SQL Express as suggested by the others :-)
IrishChieftain
+3  A: 

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

Adam Pope