display the image in table control
how to display the image in table control using asp.net in c#?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Blocked AccountPosted Jan 9, 2008, 11:41 PM
It's very simple.
<asp:Table ID="Table1" runat="server">
<asp:TableRow>
<asp:TableCell>
<asp:Image ID="Image" runat="server" ImageUrl="~/Images/pic1.gif" />
asp:TableCell>
asp:TableRow>
asp:Table>
But it can change during the requirement.
Happy Coding!!