2014-05-19 40 views
0

請幫我解決我的問題.. 我想找回我的圖片在GridView控件與圖像數據類型存儲在數據庫中。 我是新手,所以請幫助我..ASP.net-下拉列表的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(); 
} 

感謝您對您的幫助提前..

回答

0

嘗試TTO獲得onrowdatabound事件圖像控制的參考和加載從SQL字節數組控制。見下文

How to display image inside web form from Byte Array with C#

+0

鏈接感謝您的回覆.. 但我必須把它與我的GridView控件動態鏈接 – user3651366

+0

..從發佈代碼時給出了GridView1在標記定義的感覺。如果是這樣,那麼當你說動態構建時你指的是什麼。 – Lin

+0

謝謝隊友你的關注我解決了我的問題.. 它是「.cs」代碼。 – user3651366