I have deployed my MVC3 application to an IIS6 server and have changed my global.asax.cs to read the following.
I would like to change password in database manually, but I am not su开发者_开发问答re what exactly I need to change and which methods to use. I would change it via code but currently I have only acce
I have a member sign-up process which requires a monthly subscription payment.I have a script running which can update my member\'s database using an IPN script.I am curious about the best way to go a
I was using Membership.getUser() to get t开发者_JAVA百科he currently logged in user but I recently discovered that each time this it called, the data is retrieved from the database.
I am creating my own blog engine in MVC3 and I don´t want to register us开发者_开发技巧ers to post comments and other things. I just want to have login page for admin (me) so I don´t want to impleme
As I understand the [HttpPost] attribute, or any POST method for that matter, it is used when state is changed. However, if you set up Forms Authentication with a loginUrl like:
I\'m using Asp.net Membership provider. I want to know which event triggered when a person authenticated on site. ( I mean login)
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
I have a page that checks that a user is in a particular role before performing some task, and have had no problem with functionalit开发者_JAVA技巧y and have made no obvious related changes to the cod
I came accross the code : MembershipUser u = Membership.GetUser(); u.ChangePassword(u.ResetPassword(), \"Password\"); //where will I get the \"Password\" from