2010-07-16 85 views
1

這是怎麼設置的默認值與一個字符串:的SqlDataSource - UpdateParameters與圖像字節數組

sqlDataSource.UpdateParameters["Active"].DefaultValue = tbActive.Text; 

你怎麼做類似於下面的代碼,這樣我sqlDataSource可以接受更新的圖像的東西嗎?

FileUpload fuRoom1 = (FileUpload)gvRoom.Rows[e.RowIndex].FindControl("UploadedFile11"); 
     byte[] imageData1 = new byte[fuRoom1.PostedFile.InputStream.Length + 1]; 
     fuRoom1.PostedFile.InputStream.Read(imageData1, 0, imageData1.Length); 

sqlDataSource.UpdateParameters["Image1"].DefaultValue = imageData1; 
//<--wont work because it's not a string any ideas? 

我有,將圖像保存到一個SQL數據庫從RowUpdating事件一個GridView的數據類型的圖像。我有一個FileUpload控件在EditItemsTemplate

回答

0

處理sqlDataSource的OnUpdating事件並在那裏設置值。