示例#1
0
    protected void Button1_Click(object sender, EventArgs e)
    {
        ServiceReference1.ProyectoEDDSoapClient metodos = new ServiceReference1.ProyectoEDDSoapClient();

        if (Movil.Checked) // Opcion de Movil
        {
            /*string getLine = "Christian, Ramos";
             * char[] delimitador = { ',' };
             * string[] dato = getLine.Split(delimitador);
             * TextBox1.Text = dato[0];
             * TextBox2.Text = dato[1];
             */

            Label3.Text = "Selecciono Movil<br/>SI";
        }
        else
        {
            if ((TextBox1.Text == "Admin") && (TextBox2.Text == "Admin"))
            {
                //Label3.Text = "Bienvenido Administrador";
                Response.Redirect("Administrador.aspx");
                TextBox1.Text = "";
                TextBox2.Text = "";
            }
            else
            {
                if (metodos.LoginyaHayUsuarios())
                {
                    if (metodos.refABB(TextBox1.Text, TextBox2.Text) == 1)
                    {
                        if (metodos.retornoConectadoUsuario1() == 0)
                        {
                            //Label3.Text = "Bienvenido " + TextBox1.Text;
                            metodos.asignandoNombre1(TextBox1.Text);
                            Response.Redirect("Usuarios.aspx");
                        }
                        else if (metodos.retornoConectadoUsuario1() == 1)
                        {
                            //Label3.Text = "Bienvenido " + TextBox1.Text;
                            metodos.asignandoNombre2(TextBox1.Text);
                            Response.Redirect("Usuarios2.aspx");
                        }

                        TextBox1.Text = "";
                        TextBox2.Text = "";
                    }
                    else
                    {
                        Label3.Text   = "Nickname o Password Incorrectos";
                        TextBox1.Text = "";
                        TextBox2.Text = "";
                    }
                }
                else
                {
                    Label3.Text   = "No existen Usuarios, debe Ingresar Administrador";
                    TextBox1.Text = "";
                    TextBox2.Text = "";
                }
            }
        }
    }