Problem with Login control of ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T03:04:54Zhttp://stackoverflow.com/feeds/question/62013http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net2Problem with Login control of ASP.NETBiri2008-09-15T09:19:11Z2008-09-16T06:52:50Z
<p>I set up a website to use SqlMembershipProvider as written on <a href="http://msdn.microsoft.com/en-us/library/ms998347.aspx" rel="nofollow">this page</a>.</p>
<p>I followed every step. I have the database, I modified the Web.config to use this provider, with the correct connection string, and the authentication mode is set to Forms. Created some users to test with.</p>
<p>I created a Login.aspx and put the Login control on it. Everything works fine until the point that a user can log in. </p>
<p>I call Default.aspx, it gets redirected to Login.aspx, I enter the user and the correct password. No error message, nothing seems to be wrong, but I see again the Login form, to enter the user's login information. However if I check the cookies in the browser, I can see that the cookie with the specified name exists.</p>
<p>I already tried to handle the events by myself and check, what is happening in them, but no success.</p>
<p>I'm using VS2008, Website in filesystem, SQL Express 2005 to store aspnetdb, no role management, tested with K-Meleon, IE7.0 and Chrome.</p>
<p>Any ideas?</p>
<p><strong>Resolution:</strong> After some mailing with Rob we have the ideal solution, which is now the accepted answer.</p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62036#620361Answer by Jon Limjap for Problem with Login control of ASP.NETJon Limjap2008-09-15T09:41:27Z2008-09-15T09:41:27Z<p>What is the role of the username you are logging in with? Have you permitted this role to access Default.aspx?</p>
<p>I experienced this once (a long time ago) and went "doh!" when I realized that not even admin roles can access the main folder!</p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62039#620390Answer by Rob Cooper for Problem with Login control of ASP.NETRob Cooper2008-09-15T09:42:31Z2008-09-15T09:42:31Z<p>Have you checked that the redirect path is being sent to the login form? Off my head I think it is <strong>ReturnURL</strong>?</p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62047#620470Answer by Biri for Problem with Login control of ASP.NETBiri2008-09-15T09:48:02Z2008-09-15T09:48:02Z<p>@<a href="#62036" rel="nofollow">Jon</a>: I'm not using roles yet. If I check the Web Admin Tool, it says: Roles are not enabled .</p>
<p>@<a href="#62039" rel="nofollow">Rob</a>: Yes, it is there.</p>
<p>I also checked the events in order: LoggingIn, Authenticate, LoggedIn, so it is following the correct path, but no redirect and it does not see that it was authenticated.</p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62050#620502Answer by Leo Moore for Problem with Login control of ASP.NETLeo Moore2008-09-15T09:51:36Z2008-09-15T09:51:36Z<p>You normally have a initial folder with the generally accessable forms and a seperate folder with all the login protected items. In the initial folder you have a webconfig with:</p>
<pre><code> <!--Deny all users -->
<authorization>
<deny users="*" />
</authorization>
</code></pre>
<p>In the other folder you can put a seperate webconfig with settings like:</p>
<pre><code> <!--Deny all users unless autherticated -->
<authorization>
<deny users="?" />
</authorization>
</code></pre>
<p>If you want to further refine it you can allow access to a particular role only.</p>
<pre><code><configuration>
<system.web>
<authorization>
<allow roles="Admins"/>
<deny users="*"/>
</authorization>
</system.web>
</configuration>
</code></pre>
<p>This will deny access to anyone who does not have a role of admin, which they can only get if they are logged in sucessfully.</p>
<p>If you want some good background I recommend the DNR TV episode with Miguel Castro on <a href="http://www.dnrtv.com/default.aspx?showNum=20" rel="nofollow">ASP.NET Membership</a></p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62058#620581Answer by Rik for Problem with Login control of ASP.NETRik2008-09-15T09:53:54Z2008-09-15T10:15:26Z<p>I ran into a similar problem a while ago, and I remember it was solved by <em>not naming the login page "login.aspx"</em>. Just naming it something else (userLogin.aspx, for example) solved it for me.</p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62084#620840Answer by Chris Driver for Problem with Login control of ASP.NETChris Driver2008-09-15T10:10:33Z2008-09-15T10:10:33Z<p>Do you have <code>requireSSL="true"</code> in your web.config?
I had similar symptoms to you. If you set requireSSL to true, there are some <a href="http://msdn.microsoft.com/en-us/library/ms998347.aspx#paght000022_additionalconsiderations" rel="nofollow">additional considerations</a>.</p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62092#620925Answer by Rob Cooper for Problem with Login control of ASP.NETRob Cooper2008-09-15T10:15:03Z2008-09-15T10:15:03Z<h2>RE: The Accepted Answer</h2>
<p>I <strong>do not</strong> like the hack given.</p>
<p>I have a site that uses a login form called "<em>login.aspx</em>" and all works <strong>fine</strong>. I think we should actually find the answer rather than hack. Since all the [presumably] tested sites work. <strong>Do you not think we should actually use StackOverflow to find the ACTUAL problem?</strong> (making it much more useful than anywhere else?)</p>
<p>In the <strong>LoginCtl_Authenticate</strong> event are you setting the <strong>EventArgs.Authenticated</strong> property to <strong>true</strong>?</p>
<p>e.g.</p>
<pre><code>protected void LoginCtl_Authenticate(object sender, AuthenticateEventArgs e)
{
// Check the Credentials against DB
bool authed = DAL.Authenticate(user, pass);
e.Authenticated = authed;
}
</code></pre>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62104#621040Answer by Biri for Problem with Login control of ASP.NETBiri2008-09-15T10:27:45Z2008-09-15T10:27:45Z<p>@<a href="#62092" rel="nofollow">Rob</a>: You are right from your point of view.</p>
<p>From my point of view it is my test project to check some things. If it is working in any way, that fits to me. I haven't found any similair problem on the net, so it can be something else, absolutely not related to ASP.NET.</p>
<p>However I'm open, so that next time I also can say: aha, I know this!</p>
<p>I started over the project:</p>
<p>Default.aspx: added LoginStatus and LoginName controls</p>
<p>Login.aspx: added Login control and CreateUserWizard control</p>
<p>web.config: added</p>
<pre><code><authentication mode="Forms">
<forms name="SqlAuthCookie" timeout="10" loginUrl="Login.aspx"/>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
<membership defaultProvider="MySqlMembershipProvider">
<providers>
<clear/>
<add name="MySqlMembershipProvider" connectionStringName="MyLocalSQLServer" applicationName="MyAppName" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</providers>
</membership>
</code></pre>
<p>and</p>
<pre><code><connectionStrings>
<add name="MyLocalSQLServer" connectionString="Initial Catalog=aspnetdb;data source=iballanb\sqlexpress;uid=full;pwd=full;"/>
</connectionStrings>
</code></pre>
<p>Create the database with <code>aspnet_regsql -E -S iballanb\sqlexpress -A all</code>, created an SQL user called <em>full</em> with password <em>full</em>.</p>
<p>Start the project, I got redirected to Login.aspx, create one user, it is created in database. Entering user data to login form, catching events: LoggingIn, Authenticate, LoggedIn, so I'm logged in ( I don't do anything in these events, I don't authenticate myself, I'm only interested in what is fired and in which order). RedirectURL is correctly pointing to Default.aspx, but has no effect.</p>
<p>This is it so far.</p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62124#621240Answer by Rob Cooper for Problem with Login control of ASP.NETRob Cooper2008-09-15T10:39:14Z2008-09-15T10:39:14Z<p>If you are overriding the events, are you <strong>calling the default implementation?</strong> If you are overriding them to confirm their execution, then the actual code will not be getting executed either, which may be the break in the plumbing..</p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/65670#656704Answer by Rob Cooper for Problem with Login control of ASP.NETRob Cooper2008-09-15T18:56:04Z2008-09-15T19:30:27Z<p>Hi Biri,</p>
<p>I have checked the code over in the files you have sent me (thanks again for sending them through).</p>
<p><strong>Note: I have not tested this since I have not installed the database etc..</strong></p>
<p>However, I am pretty sure this is the issue.</p>
<p>You need to set the <em>MembershipProvider</em> Property for your ASP.NET controls. Making the definitions for them:</p>
<pre><code><asp:Login ID="Login1" runat="server"
MembershipProvider="MySqlMembershipProvider">
<LayoutTemplate>
<!-- template code snipped for brevity -->
</LayoutTemplate>
</asp:Login>
</code></pre>
<p>And..</p>
<pre><code><asp:CreateUserWizard ID="CreateUserWizard1" runat="server"
MembershipProvider="MySqlMembershipProvider">
<WizardSteps>
<asp:CreateUserWizardStep runat="server" />
<asp:CompleteWizardStep runat="server" />
</WizardSteps>
</asp:CreateUserWizard>
</code></pre>
<p>This then binds the controls to the Membership Provider with the given name (which you have specified in the Web.Config.</p>
<p>Give this a whirl in your solution and let me know how you get on.
I hope this works for you :)</p>
<h3>Edit</h3>
<p>I should also add, I know you shouldn't need to do this as the default provider is set, but I <em>have</em> had problems in the past with this.. I ended up setting them all to manual and all worked fine.</p>