开发者

How do I manually log a user in with a MembershipProvider?

开发者 https://www.devze.com 2022-12-25 12:32 出处:网络
I\'m experimenting with writing my own custom MembershipProvider in asp.net and I want to roll my own login page.We do some fairly special stuff at login time so we can\'t use the default login contro

I'm experimenting with writing my own custom MembershipProvider in asp.net and I want to roll my own login page. We do some fairly special stuff at login time so we can't use the default login control so I 开发者_运维百科need a way to manually log a user in.

So far I haven't found anything on how to write your own login control so I'm here, wondering how I can manually log a user in via a MembershipProvider.

I've tried

Membership.ValidateUser("user", "pass");

and while that does call ValidateUser() on my custom MembershipProvider, and it does return true, it doesn't actually log me in.

Btw I'm fairly new to the whole MembershipProvider stuff so if I'm not even on the right wavelength, feel free to let me know.


if (Membership.ValidateUser(Username.Text, Password.Text))
{

   FormsAuthentication.SetAuthCookie(Username.Text, false);
   FormsAuthentication.RedirectFromLoginPage(Username.Text, false);
}
else
{
// do something else
}

The above was copied from working code with a custom membership provider in a situation just like yours, where we needed to do a bunch of extra work at login. (Sensitive operations reomved to protect the innocent.)


A MembershipProvider only stores the data about the users, actual logins and session handling are handled by an AuthenticationProvider. For example, if you're using forms (=cookie based) authentication, check out FormsAuthentication.SetAuthCookie and the other related methods in that class.


For future reference, you can check out the internal code of any component if you look inside the assemblies with Reflector:

  • http://www.red-gate.com/products/reflector/

There is a free version which will do everything you need.

Also you shouldn't have to create your own Login control because the Login is very extensible. You can edit the template and handle various events to get it to do what you want.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号