Ejemplo n.º 1
0
 protected void FilterButton_Click(object sender, EventArgs e)
 {
     using (var conn = new SqlConnection(connectionString))
     {
         using (SqlCommand cmd = new SqlCommand("SelectTypeByName"))
         {
             cmd.CommandType = System.Data.CommandType.StoredProcedure;
             cmd.Parameters.AddWithValue("@typeName", DropDownOfTypes.Text);
             cmd.Connection = conn;
             conn.Open();
             SqlDataSource1.SelectParameters["cardType"].DefaultValue = cmd.ExecuteScalar().ToString();
             conn.Close();
             AllCards.DataBind();
         }
     }
 }