First off, I m not entirely sure that my question title is very descriptive, so my apologies for that.
I am working on a new site and will be using the MembershipProvider system (well, a custom implementation anyway), and I ve run across a unique problem. Since the machine I m developing this on is hooked up to my employers ActiveDirectory domain, whenever I use any of the Login controls, it constantly shows me as being logged in, pulling the DOMAINuser.name from ActiveDirectory, even though I haven t created any user accounts yet with the Membership system.
Now, I know why it s doing this; it s because the Login controls pull the username from the Page s Request property, which is always going to pull my domain account. My question is, can I override this? I need to because since I am using a custom membership model, I need to test the login/logout functionality, and I can t do that when it constantly shows me as being logged in. :)
Any information or links would be greatly appreciated. I did look through the "Related Questions" before posting this, and didn t find anything directly related to my question. Thanks again.
James