borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder

AndreaVB | Forum | News | Downloads | Register | Help | Member List | Statistics | Search | PM | Profile

Print This Topic
Previous Topic (how to read a text file in asp.net)Next Topic (how to develop a schedule component which will fire after certain time?) New Topic New Poll Post Reply
AndreaVB Forum : ASP.Net : how to show images through datagrid ?
Poster Message
tri_inn
Level: Regular User
Registered: 26-08-2002
Posts: 395

icon how to show images through datagrid ?

suppose i have saved many images in database instead of storing their path.now how can i show my all images
through datagrid in asp.net after reading those images from database.

05-09-2004 at 02:18 PM
View Profile Send Email to User Show All Posts | Quote Reply
zimcoder
Level: VB Lord


Registered: 27-10-2003
Posts: 225
icon Re: how to show images through datagrid ?

create a item template column in your datagrid and place an image control and set the src to the datasorce field that contains the retreived data for the image

<Columns>
<asp:TemplateColumn HeaderText="Image">
<ItemTemplate>
<asp:Image id="Image1" runat="server" Width="113px" Height="110px" ImageUrl="ThePathetoyourimage"></asp:Image>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>


[Edited by zimcoder on 14-09-2004 at 03:02 PM GMT]

____________________________
BrainBench ADO.NET and ASP.NET Certified Developer

13-09-2004 at 10:22 AM
View Profile Send Email to User Show All Posts | Quote Reply
AndreaVB Forum : ASP.Net : how to show images through datagrid ?
Previous Topic (how to read a text file in asp.net)Next Topic (how to develop a schedule component which will fire after certain time?) New Topic New Poll Post Reply
Surf To:


Not Logged In? Username: Password: Lost your password?
Partners: Download Actual Software | Free Software Download
borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder