User Login

L

Lars

Hi

I have an ISO that stores the MSSQL database on a different folder. Is it
possible to connect the Login Forms to a database on another MSSQL server or
to an Access Database file?

I can't use the file aspnetsb.mdf file for my Login forms on my honepage.

Lars
 
M

Munna

S

sloan

You have two choices.

If you have an existing database structure, you can write your own Custom
Membership (and maybe Role) provider.

That is if you have existing structure.

...

If you have a rdbms issue, then google and you'll probably find people
who've already written one which mimicks aspnetdb.mdb.

For example
http://www.google.com/search?hl=en&q=MySql+"MembershipProvider"
And the code project site looks like someone has all the code you need to
have MySql as your backend rdbms.

The big key is about your existing DDL or db structure.

...

I would advise to find the code someone else has already done, and work that
into your solution.
Implementing all the abstract methods of a MembershipProvider is not
trivial.

Good luck.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top