I have a question about the login control of asp.net. I defined on my application in asp.Login, and password, also I made the changes in the web config with the info needed to set the authentication but i want to know how i bind the fields of user and password to the data base: I have this doubt because in the msdn documentation says "If you use the Login control with ASP.NET membership, you do not need to write code to perform authentication.".
Here's the code of my view
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage/MasterSencillo.master" AutoEventWireup="true" CodeBehind="login.aspx.cs" Inherits="MapaPrueba.login" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<table class="tlbLogin">
<tr>
<td>
<asp:Login ID="lgnMapZone" runat="server" DestinationPageUrl="~/Default.aspx"
LoginButtonText="Iniciar Sesion"
PasswordRequiredErrorMessage="Password requerido." RememberMeText="Recuerdáme"
TitleText="Inicio de Session " UserNameLabelText="Usuario:"
UserNameRequiredErrorMessage="Nombre de usuario Requerido">
<LabelStyle CssClass="formatText" />
<TitleTextStyle CssClass="formatText" />
</asp:Login>
</td>
</tr>
</table>
And my Web.Config
<appSettings/>
<connectionStrings>
<add name="MySqlConnection" connectionString="Data Source=.\SqlExpress;Initial Catalog=AtentoMIG;Integrated Security=True" />
</connectionStrings>
<system.web>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies></compilation>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Forms">
<forms loginUrl="login.aspx" name=".ASPXFORMSAUTH"/>
</authentication>
<authorization>
<deny users="?" />
</authorization>
<membership defaultProvider="SqlProvider" userIsOnlineTimeWindow="15">
<providers>
<clear />
<add
name="SqlProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="MySqlConnection"
applicationName="MyApplication"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
requiresUniqueEmail="true"
passwordFormat="Hashed" />
</providers>
System.Windows.Forms.dllin ASP.Net. You will regret it. – SLaks Jul 22 '11 at 15:59