I've created a relatively simple website, and am attempting to use asp.net form based authentication, but upon adding a new user to the DB and attempting to log in, I get error messages.
Just to clarify, my main goal here is to allow the user to log in to the system, the rest, I reckon, are problems, but I'm probably mistaken, if that's the case, skip to the 2nd edit, that's the one that contains an actual indication on the login issues.
I went to the website administration tool in order to see what's up, and upon going to the Providers tab, I tried out the only provider that was around (AspNetSqlProvider), upon which I got the following error message:
Could not establish a connection to the database.
If you have not yet created the SQL Server database, exit the Web Site Administration tool, use the aspnet_regsql command-line utility to create and configure the database, and then return to this tool to set the provider.
I tried out A TON of tips online, and nothing seems to work. Including replacing the DB altogether and using the aspnet_regsql tool.
Here's my web.config:
<configuration>
<connectionStrings>
<add name="ASPNETDBConnectionString1" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\ASPNETDB.MDF;Integrated Security=True;Connect Timeout=30;User Instance=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<authentication mode="Forms" />
<authorization>
<deny users="?" />
</authorization>
<roleManager enabled="true" />
<compilation debug="true" targetFramework="4.0" />
</system.web>
</configuration>
I should mention that I did some minor modifications to the database in question, but I didn't touch any of the built in tables, only added new ones and added foreign keys (to the userID value, specifically)
Edit: To add insult to injury, the Security tab works fine.
Edit 2: Some more info, I went to the event viewer to see what's going on when I fail to log in, and I get the following message:
Event code: 4005
Event message: Forms authentication failed for the request. Reason: The ticket supplied was invalid.
Event detail code: 50201
And some other useless info.
I'm utterly clueless as to how to proceed, any help would be creatly appreciated. Thanks!