예제 #1
0
 protected void Giris_Click(object sender, EventArgs e)
 {
     if (kullanicib.userLoginOn(txtMail.Value, DAL.toolkit.SHA1Hash_Encryption(txtSifre.Value)))
     {
         Response.Redirect("~/default.aspx");
     }
     else
     {
         Response.Redirect("~/giris-yap.aspx");
     }
 }