Posted on: 7/10/2014 11:43:29 PM | Views : 363

Hi in below code its working fine but the images are not showing so could any body help me to show images

string cs = ConfigurationManager.ConnectionStrings["BeravaConnectionString"].ConnectionString.ToString(); protected void Page_Load(object sender, EventArgs e) { SqlConnection shwadsone = new SqlConnection(cs); { // Open your connection shwadsone.Open(); SqlCommand adsdeCM = new SqlCommand(); // Build your data adapter string adsdetSqlSelect = @"SELECT [AdsID] ,[UID] ,[Section] ,[Category] ,[Country] ,[State] ,[City] ,[AdsTit] ,[AdsDesc] ,[AdsPrice] ,[Img1] ,[Img2] ,[Img3] ,[Img4] ,[Img5] ,[Wtags] ,[AdsDate] ,[Website] FROM [ads] ...

Go to the complete details ...