Membership help: LoginName control showing windows username

  • Thread starter Thread starter sklett
  • Start date Start date
S

sklett

I *think* I've got the asp.net membership controls setup to use MySql and
when I login entering credentials from my database (IE: not active
directory) the login succeeds but the LoginName controls displays
<myDomain>\<myUsername> rather than the username from the database.

Anyone else ever experienced this? I must be missing something obvious...

Thanks for any help,
Steve
 
In Web.config you may need to set your authorization to the mode Form.
ASP.net gives you the option of letting users log in with their
Windows credentials instead, that may be the way you have it.

<configuration>
<system.web>
<authentication mode="Forms">

-Michael Placentra II
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top