Image in Datagrid from Memory

ashutosh9910

Freshman
Joined
May 13, 2005
Messages
44
Hi all,

I have a datagrid with a template column with Image control on it.

Heres how it goes:
Visual Basic:
<asp:TemplateColumn HeaderText="Image">		
       <ItemTemplate>
	<asp:image id="imgImage" Runat="server" ImageUrl="ApprovarImage.gif"></asp:image>
                       </ItemTemplate>						</asp:TemplateColumn>


Now i need to get an image from the MemoryStream into this Image Control.

How can i get the same.


Thanks in advance
Ashutosh
 
Back
Top