Posted on: 12/20/2015 4:51:38 AM | Views : 1109

Hi 
Into below code it binding the data that user added before , what I am looking for is bind (retrieve) images "img1 img2 img3" file name into below fileupload so the user dont need to choose the images again 
FileUpload1 = img1
FileUpload2 = img2
FileUpload3 = img3

protected void EditAdsBtn_Command(object sender, CommandEventArgs e) { EditMyAdsPanel.Visible = true; ViwMyAdsPanel.Visible = false; if (Session["UsrNme"] != null) { SqlConnection EdPersCVCon = new SqlConnection(sc); { EdPersCVCon.Open(); SqlCommand EdPersCVCMD = new SqlCommand(); string adsdetSqlSelect = @"SELECT AdsID, Address, AdsTit, AdsDesc, AdsPrice, extlink, extlink, Wtags, img1,img2, img3 From ads Where UID=@UID and AdsID=@AdsID&q ...

Go to the complete details ...