Membership login with mysql
protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
MySqlConnection conDatabase = new MySqlConnection("Server=localhost;Persist Security Info=no;User ID=Administrator");
MySqlConnection cnnVideos = new MySqlConnection("Network Address=localhost;" +
"Initial Catalog='login';" +
"Persist Security Info=no;" +
"User Name='root';" +
"Password=''");
}



