I am creating a site that contains a user login. I pulled down the
"How do I ..." video and sample code from asp.net on Membership and
Securing a website. When I am in VS2005 and run the application in
Debug mode, I can login to the site. When I access the site from out
site of VS (http://localhost/mysite/default.aspx), the application
looks at my network ID (jxcont) instead the application user ID I
picked for the site (jxc). If I specify port 2575 in my URL, I am
able to login.
It looks as if 2575 is directing the application to look at ASPDB.MDF.
IIS is setup with Windows Authentication without an Anonymous User.
I added the code below so the user password would require a non-
alphanumeric value.
<system.web>
<membership>
<providers>
<remove name="AspNetSqlMembershipProvider"/>
<add name="AspNetSqlMembershipProvider"
type="System.Web.Security.SqlMembershipProvider, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="LocalSqlServer" enablePasswordRetrieval="true"
enablePasswordReset="true" requiresQuestionAndAnswer="false"
applicationName="/" requiresUniqueEmail="true"
passwordFormat="Encrypted" maxInvalidPasswordAttempts="5"
passwordAttemptWindow="10" passwordStrengthRegularExpression=""
minRequiredPasswordLength="4" minRequiredNonalphanumericCharacters="0"/
</providers>
</membership>
:
:
</system.web>
How do I avoid is problem?
Cowboy (Gregory A. Beamer) - 07 Jul 2007 13:43 GMT
What does the authentication and authorization section look like? If you
have it set to Windows Authentication instead of forms, there is your
problem.

Signature
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)
************************************************
Think outside the box!
************************************************
>I am creating a site that contains a user login. I pulled down the
> "How do I ..." video and sample code from asp.net on Membership and
[quoted text clipped - 34 lines]
>
> How do I avoid is problem?