Issue w/ Login Control
- From: "Chris F" <screwworkn(NadaSpamda)@hotmail.com>
- Date: Tue, 22 Apr 2008 12:59:21 -0500
I have the following in my web config. It looks like the AD login is working because it tells me if the password is incorrect, however, if it is a successful login it says on the login page and does not redirect to the WebForm1.aspx. The url does have the return in it as well. http://localhost:52502/Login.aspx?ReturnUrl=%2fWebForm1.aspx
Any thoughts as to what the issue may be?
Thanks
Chris
<authentication mode="Forms">
<forms loginUrl="Login.aspx"
protection="All"
timeout="30"
name="AppNameCookie"
path="/FormsAuth"
requireSSL="false"
slidingExpiration="true"
defaultUrl="WebForm1.aspx"
cookieless="UseCookies"
enableCrossAppRedirects="false"
/>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
<membership defaultProvider="MembershipADProvider">
<providers>
<clear />
<add
name="MembershipADProvider"
type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="LDAPConnectionString"
connectionUsername="admin"
connectionPassword="xxxxxx"
attributeMapUsername="SAMAccountName"
attributeMapEmail="mail"
enableSearchMethods="true"
applicationName="/"
/>
</providers>
</membership>
.
- Prev by Date: Chinese Microphone - China Chinese Microphone Manufacturer
- Next by Date: Re: Dropdown selection displaying "SYSTEM.RUNTIME.SERIALIZATION.EXTENSIONDATAOBJECT"
- Previous by thread: Chinese Microphone - China Chinese Microphone Manufacturer
- Next by thread: Multiselect DropDown using Checkboxes
- Index(es):
Relevant Pages
|