gridview With Images的下拉列表

本文关键字:下拉列表 Images With gridview | 更新日期: 2023-09-27 18:03:53

请帮我解决我的问题。我想检索我的图像在gridview中存储在数据库中的图像数据类型。我是新手,请帮帮我。

SqlConnection conn;
SqlCommand cmd;
SqlDataAdapter adp;
string str;
string strCon = "Data Source=S-PC;Initial Catalog=SA;Integrated Security=True";
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
    conn.Open();
    str = "SELECT imgg from SA_Stock where '"+DropDownList1.SelectedItem.Text+"";
    conn = new SqlConnection(strCon);
    cmd=new SqlCommand(str,conn);
    adp=new SqlDataAdapter(cmd);
    DataSet ds = new DataSet();
    adp.Fill(ds);
    GridView1.DataSource = ds.Tables["SA_Stock"];
    GridView1.DataBind();
    conn.Close();
}

提前感谢您的帮助

gridview With Images的下拉列表

尝试在onrowdatabound事件中获取图像控件的引用,并从sql中加载字节数组到控件。见下面的链接

如何在web表单中显示图像