protected void VerTodos_Click(object sender, EventArgs e)
    {
        Button1.Enabled       = true;
        ButtonRegista.Enabled = true;
        VerTodos.Enabled      = true;
        Editar.Enabled        = true;

        ServiceConexionB.IServicioBusClient WS = new ServiceConexionB.IServicioBusClient();
        DataSet data1 = WS.GetAllBusesData();

        TextMostrar.DataSource = data1.Tables[0];
        TextMostrar.DataBind();

        ResultadoOperacion.Text = "Todos los \nbuses mostrados";
    }
    protected void Page_Load(object sender, EventArgs e)
    {
        ServiceConexionB.IServicioBusClient WS = new ServiceConexionB.IServicioBusClient();
        DataSet data1 = WS.GetAllBusesData();
        int     mayor = TextMostrar.Rows.Count;

        if (mayor >= 0)
        {
            TextMostrar.DataSource = data1.Tables[0];
            TextMostrar.DataBind();
            ResultadoOperacion.Text = "Mostrando todos \n los buses";
        }
        else
        {
            ResultadoOperacion.Text = "Base de datos \n vacia";
        }
    }