Problem with Login control of ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T03:04:54Z http://stackoverflow.com/feeds/question/62013 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net 2 Problem with Login control of ASP.NET Biri 2008-09-15T09:19:11Z 2008-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#62036 1 Answer by Jon Limjap for Problem with Login control of ASP.NET Jon Limjap 2008-09-15T09:41:27Z 2008-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#62039 0 Answer by Rob Cooper for Problem with Login control of ASP.NET Rob Cooper 2008-09-15T09:42:31Z 2008-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#62047 0 Answer by Biri for Problem with Login control of ASP.NET Biri 2008-09-15T09:48:02Z 2008-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#62050 2 Answer by Leo Moore for Problem with Login control of ASP.NET Leo Moore 2008-09-15T09:51:36Z 2008-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> &lt;!--Deny all users --&gt; &lt;authorization&gt; &lt;deny users="*" /&gt; &lt;/authorization&gt; </code></pre> <p>In the other folder you can put a seperate webconfig with settings like:</p> <pre><code> &lt;!--Deny all users unless autherticated --&gt; &lt;authorization&gt; &lt;deny users="?" /&gt; &lt;/authorization&gt; </code></pre> <p>If you want to further refine it you can allow access to a particular role only.</p> <pre><code>&lt;configuration&gt; &lt;system.web&gt; &lt;authorization&gt; &lt;allow roles="Admins"/&gt; &lt;deny users="*"/&gt; &lt;/authorization&gt; &lt;/system.web&gt; &lt;/configuration&gt; </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#62058 1 Answer by Rik for Problem with Login control of ASP.NET Rik 2008-09-15T09:53:54Z 2008-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#62084 0 Answer by Chris Driver for Problem with Login control of ASP.NET Chris Driver 2008-09-15T10:10:33Z 2008-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#62092 5 Answer by Rob Cooper for Problem with Login control of ASP.NET Rob Cooper 2008-09-15T10:15:03Z 2008-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#62104 0 Answer by Biri for Problem with Login control of ASP.NET Biri 2008-09-15T10:27:45Z 2008-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>&lt;authentication mode="Forms"&gt; &lt;forms name="SqlAuthCookie" timeout="10" loginUrl="Login.aspx"/&gt; &lt;/authentication&gt; &lt;authorization&gt; &lt;deny users="?"/&gt; &lt;allow users="*"/&gt; &lt;/authorization&gt; &lt;membership defaultProvider="MySqlMembershipProvider"&gt; &lt;providers&gt; &lt;clear/&gt; &lt;add name="MySqlMembershipProvider" connectionStringName="MyLocalSQLServer" applicationName="MyAppName" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/&gt; &lt;/providers&gt; &lt;/membership&gt; </code></pre> <p>and</p> <pre><code>&lt;connectionStrings&gt; &lt;add name="MyLocalSQLServer" connectionString="Initial Catalog=aspnetdb;data source=iballanb\sqlexpress;uid=full;pwd=full;"/&gt; &lt;/connectionStrings&gt; </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#62124 0 Answer by Rob Cooper for Problem with Login control of ASP.NET Rob Cooper 2008-09-15T10:39:14Z 2008-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#65670 4 Answer by Rob Cooper for Problem with Login control of ASP.NET Rob Cooper 2008-09-15T18:56:04Z 2008-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>&lt;asp:Login ID="Login1" runat="server" MembershipProvider="MySqlMembershipProvider"&gt; &lt;LayoutTemplate&gt; &lt;!-- template code snipped for brevity --&gt; &lt;/LayoutTemplate&gt; &lt;/asp:Login&gt; </code></pre> <p>And..</p> <pre><code>&lt;asp:CreateUserWizard ID="CreateUserWizard1" runat="server" MembershipProvider="MySqlMembershipProvider"&gt; &lt;WizardSteps&gt; &lt;asp:CreateUserWizardStep runat="server" /&gt; &lt;asp:CompleteWizardStep runat="server" /&gt; &lt;/WizardSteps&gt; &lt;/asp:CreateUserWizard&gt; </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>