vote up 0 vote down star

I have a website which requires pretty simple logon restriction to a set folder (2 users) I'd like to use the Membership provider but have a sql DB (While easy and painless) seems a bit of overkill.

Is there a simpler way of doing this? without re-writting the membership provider.

flag

3 Answers

vote up 0 vote down check

In the end, I've decided the best way is to use the SQL database and standard tables.

link|flag
vote up 0 vote down

You could hard code the password hashes for the 2 users into the asp files and match the hash at logon :)

link|flag
hard-coding is not a good practice. should only be used in tutorials. – Shivan Raptor Oct 28 at 9:27
He doesn't want a DB; and there are only 2 users ... – Crimson Oct 28 at 11:37
vote up 0 vote down

You can use your web.config to store your members and roles definitions/credentials. A sample here: http://www.eggheadcafe.com/articles/20060529.asp

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.