Example #1
0
        protected void BtnSubmit_Click(object sender, ImageClickEventArgs e)
        {
            EntityServiceReference.EntityServiceClient ServiceRefClient = new EntityServiceReference.EntityServiceClient();
            ServiceRefClient.Open();
            var arr = ServiceRefClient.GetUserLogin(txtMemberId.Text.ToString(), txtPassword.Text.ToString());

            if (arr.Length > 0)
            {
                if (arr[0].Value.ToString().Equals("2"))
                {
                    Session["IsLogged"] = "1";
                    Session["RegId"]    = arr[0].ERPMemberId.ToString();
                    Response.Redirect("UserCard.aspx");
                }
                else
                {
                    lblMsg.Visible = true;
                    lblMsg.Text    = "Invalid Member Id or Password";
                }
            }
            ServiceRefClient.Close();
        }
Example #2
0
 protected void BtnSubmit_Click(object sender, ImageClickEventArgs e)
 {
     EntityServiceReference.EntityServiceClient ServiceRefClient = new EntityServiceReference.EntityServiceClient();
     ServiceRefClient.Open();
     var arr = ServiceRefClient.GetUserLogin(txtMemberId.Text.ToString(), txtPassword.Text.ToString());
     if (arr.Length > 0)
     {
         if (arr[0].Value.ToString().Equals("2"))
         {
             Session["IsLogged"] = "1";
             Session["RegId"] = arr[0].ERPMemberId.ToString();
             Response.Redirect("UserCard.aspx");
             
         }
         else
         {
             lblMsg.Visible = true;
             lblMsg.Text = "Invalid Member Id or Password";
         }
     }
     ServiceRefClient.Close();
 }