Using visual studio 2010.
Dragged and dropped a login control onto a blank content page. Set up my web.config (i'll include the code for that at the end). It seems to want to use a sql database to store the info. I just want to use the web.config since it's just a single user and a simple site. I thought I could just drag and drop the login control to a page and that would be the end of it (besides setting up the web.config).
Here's what i have in the config file
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<customErrors mode="Off" ></customErrors>
<authentication mode= "Forms">
<forms loginUrl="login.aspx" protection="All" timeout="30" path="/" slidingExpiration="true">
<credentials passwordFormat="Clear">
& ...
Go to the complete details ...