Hi All

I am working since 2 days to display images in a datalist and the code used is given below, but its not displaying the images.
I am storing path of the image in database in imagepath cooumn. Kindly help me please.

html code

<asp:DataList ID="dlImage" runat="server" RepeatColumns="3" Width="311px" Height="334px">
        <ItemTemplate>
        <asp:ImageButton ID="imgPhotos" ImageUrl='<%#Eval("imagepath")%>' Height="100%" Width="100%" runat="server" />
        </ItemTemplate>
        </asp:DataList>

c# code

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.OleDb;


 protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            cnOledb = new OleDbConnection("provider=microsoft.jet.oledb.4.0;data source=" + strRootDir + "App_Data\\dbPhotos.mdb");
        cnOledb.Open();
string strSelImages = "select imagepath from tblPhotos";
        DataSet ds = new DataSet();
        OleDbDataAdapter da = new OleDbDataAdapter(strSelImages, cnOledb);
        da.Fill(ds);
        dlImage.DataSource = ds.Tables[0];
        dlImage.DataBind();
        cnOledb.Close();
        }

    }

Thanks
wajid

hi shall i know whether u say the image as a binary in database or you save the image in front end and save the image path in database. If u reply for this i will help u out because i to use this type in c#. so reply me soon i will reply u tomarrow ok

cool

I am saving path of the image in the database.

problem is resolved. Actually I was storing the complete physical path of my application in the database like D:\something\myapplicating\images\img.jpg that is why images in datalist are not displayed. I changed the path to images\img.jpg and it worked. Hope this will help others

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.