I have a grid in my web site with a GridTemplateColumn inside and I am using <ItemTemplate> to layout a custom appearance.
Here's the ItemTemplate contents :
I want to enter two dynamically created divs to the left of the template that will appear vertically with a Field Description inside.
How can I do that?
Thank you very much!
Here's the ItemTemplate contents :
| <asp:Image ID="Image1" Style="float: left;" Width="171px" Height="167px" |
| ImageUrl='<%# "ImageFromDB.ashx?ID=" + Eval("KeyID") %>' runat="server" |
| AlternativeText="Stock Image" /> |
| <div> |
| <span style="font-weight: bold; font-family: Arial Black;">Description:</span> |
| <%# Eval("Description") %> |
| <br /> |
| <br /> |
| <span style="font-weight: bold;">Manufacturer:</span> |
| <%# Eval("Manufacturer") %> |
| <br /> |
| <br /> |
| <span style="font-weight: bold;">Code:</span> |
| <%# Eval("Code") %> |
| </div> |
I want to enter two dynamically created divs to the left of the template that will appear vertically with a Field Description inside.
How can I do that?
Thank you very much!
