如何根据下拉列表中的选定值在文本框上显示数据

How to display data on textbox based on selected value from dropdownlist

当我在下拉列表中选择特定数据时,我需要文本框中数据库中的数据。 我执行了以下代码,但它给了我数字而不是描述。

int s1 = DropDownList3.SelectedIndex;

SqlCommand query = new SqlCommand("Select description from vul_auto where finding_id= " + s1,con);

TextBox3.Text =(query.ExecuteNonQuery()).ToString();

ExecuteNonQuery returns 受影响的行数。您将使用它来执行 insert/update/delete,而不是 select 数据。相反,您应该使用 ExecuteScalar.

另外,作为一般的最佳实践,始终使用参数化查询而不是连接,特别是当您接受用户输入时。

using (SqlConnection conn = new SqlConnection(yourconnectionstring))
{
    string sql = "Select description from vul_auto where finding_id=@id";
    SqlCommand cmd = new SqlCommand(sql, conn);
    cmd.Parameters.Add("@id", SqlDbType.Int);
    cmd.Parameters["@id"].Value = s1;
    try
    {
        conn.Open();
        TextBox3.Text = Convert.ToString(cmd.ExecuteScalar());
    }
    catch (Exception ex)
    {
        //Handle exception
    }
}

正如@user3713775 在他的回答中提到的那样,使用 Convert.ToString 来处理空值。

@shree.pat18 是正确的。 使用 query.ExecuteScalar() 并使用 ConvertToString() 而不是 ToString() 以获得更高的稳健性。 像 TextBox3.Text = Convert.ToString(query.ExecuteScalar());