Tagged Questions

3
votes
4answers
59 views

What Active Directory field do I use to uniquely identify a user?

I have an Asp.net MVC project authenticating through AD. I would like to store audit information in tables for the current logged in user. What should I be storing in the database? I am currently …
-1
votes
2answers
52 views

log out asp.net user through sql?

Can I force a log out through SQL for asp.net membership account?
0
votes
1answer
19 views

asp.net membership - customize password recovery

I want to customize asp:PasswordRecovery control. I am using asp.net membership to control login etc. How do I change "from" email-address on the email that sends the new password? How do I …
2
votes
4answers
41 views

Asp.net Membership - Accounts getting locked out

We're using the standard ASP.net membership features that come with asp.net. Certain accounts in our membership database have a "Locked Out" flag set to true - when/how does this happen?
0
votes
1answer
24 views

What’s the meaning of “_FORM” in ModelState?

Hello, I was going through the AccountController class (the default one). I noticed that "_FORM" is used at many places with the ModelState. For, isntance: if (String.IsNullOrEmpty(userName)) …
0
votes
2answers
40 views

ASP.NET Membership and Linq to SQL

I am wondering the best way about setting up asp.net membership in sql server to work well with linq to sql. I'd like to use the username field for the foreign key relationships and have linq to sql …
0
votes
1answer
14 views

Can anonymous and authenticated profiles coexist together in ASP.NET ?

I'm trying to figure out exactly when the event Profile_MigrateAnonymous fires. My best guess from just tracing through my code is that it fires when it detects BOTH an anonymous membership cookie …
3
votes
1answer
29 views

Asp.net Memebership Authorization without password

To authanticate users in Asp.net Membership we can call method FormsAuthentication.Authenticate(username, password) how can I do the same job (generate session, cookies and all other staff that …
0
votes
1answer
44 views

Asp.net, Active Directory authentication not working

I'm having trouble getting AD authentication working on my website. I have the following test code that works fine : DirectoryEntry entry = new DirectoryEntry(srvr, usr, pwd); object nativeObject = …
0
votes
2answers
17 views

Why can I create a new user, but when I immediately attempt to authenticate with their credentials, I fail?

I create a new user, approve them, then immediately attempt to authenticate with the credentials I just used to create the user...and get "false" back the Authenticate method. string username = "me"; …
1
vote
2answers
40 views

How can I change the ASP.Net MVC Login Redirect based on role?

I have the following code I've typed into the Account Controller in my MVC project and I am in both the administrator and manager roles. When I log in I get redirected back to my home index instead …
1
vote
1answer
49 views

Custom RoleProvider with MVC 2.0

I have a custom Membership and Role Provider that I am setting up within an application. In ASP .Net Webforms I utilize the same providers and when the app is compiled and run the providers are …
0
votes
1answer
12 views

Is it possible to store the ASPNETDB database in a separate project?

I'm building a web application in ASP.NET and I want to separate it into three layers: Presentation, Data and Business. I want to keep my database in the Data layer but I can't figure out a way to …
3
votes
4answers
90 views

Microsoft Membership Provider Vs Custom Provider Vs Complete Custom Login System

I am currently converting a very old, but working classic ASP site to ASP.Net. It has a completely custom written user management system. Whilst it works fine, it really needs a refresh as I want it …
0
votes
2answers
17 views

ActiveDirectoryMembershipProvider and referential integrity

In the past, when I implemented my own authentication mechanisms I would have a user table with relationships to other tables in my application's MySQL database. However, now that I'm considering …

1 2 3 4 5 29 next
15 30 50 per page