0

I need to use the SqlMembershipProvider without password to new users. How can I do that?

Thanks!

OMG Ponies
  • 325,700
  • 82
  • 523
  • 502
Rodrigo Juarez
  • 1,745
  • 1
  • 23
  • 38

1 Answers1

0

With the SqlMembership provider passwords are required (and this is a good thing). If you really want to have users who don't have passwords (and I'd love to know what scenario needs this) then you will have to use a custom membership provider, and custom login controls, as they all enforce passwords as well.

blowdart
  • 55,577
  • 12
  • 114
  • 149
  • The scenario is an internal application. An operator is creating accounts for other users, and the users don't have email to send autogenerated passwords, so I need a blank password, that will be changed on first login – Rodrigo Juarez Sep 09 '09 at 22:27