Hi i have stored the images in mysql using the varchar datatype and i am storing the path of that and i want to retrive that images in the gridview of asp.net
+1
A:
You can use an ImageField, like this:
<asp:GridView ID="GridView1" Runat="server"
DataSource='<%# GetData() %>' AutoGenerateColumns="False">
<Columns>
<asp:ImageField DataImageUrlField="PictureURL"></asp:ImageField>
</Columns>
</asp:GridView>
Steven
2010-02-08 12:48:46
It's not working
Khilen
2010-02-08 12:57:15
in this way it should work. how is your code
drorhan
2010-02-08 16:13:35