Example #1
0
 protected void Button1_Click1(object sender, EventArgs e)
 {
     Response.Write(BALServices.Login(TextBox1.Text, TextBox2.Text));
 }
Example #2
0
 protected void Button1_Click(object sender, EventArgs e)
 {
     Response.Write(BALServices.Login(txtName.Text, txtPass.Text));
 }
Example #3
0
 public string Login(string userNameOrEmail, string userPass)
 {
     return(BALServices.Login(userNameOrEmail, userPass));
 }
Example #4
0
 public string Login(string email, string password)
 {
     return(BALServices.Login(email, password));
 }
Example #5
0
 public string Login(string name, string pass)
 {
     return(BALServices.Login(name, pass));
 }