Posted on: 6/15/2014 2:09:18 PM | Views : 384

Hi I want to display only selected or few images and not all from database...

But the code below is not displaying anything..although database has images as paths.Please help
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Windows.Forms; using System.Data; using System.Data.SqlClient; using System.Data.SqlTypes; using System.Configuration; using System.Collections; using System.Web.Security; namespace WebApplication1 { public partial class dummy : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { SqlConnection connection = new SqlConnection(ConfigurationManager.ConnectionStrings["birthday"].ToString()); connection.Open(); //SqlDataAdapter dataAdapter = new SqlDataAdapter("select image from details", c ...

Go to the complete details ...