示例#1
0
    protected void btnCrear_Click(object sender, EventArgs e)
    {
        banda b = new banda();

        b.Nombre = txtNombre.Text;
        b.Estilo = txtEstilo.Text;

        CRUD.createBanda(b);
        txtNombre.Text = "";
        txtEstilo.Text = "";
        txtCodigo.Text = "";
    }