'DataItem' error
All,
I am getting this error when attempting to bind a href and image in a datagrid:
"BC30456: 'DataItem' is not a member of 'System.Web.UI.Control'."
Code:
<columns>
<asp:templatecolumn>
<itemtemplate> <a href='itemlisting.aspx?Id=<%# DataBinder.Eval(Container.DataItem, "zz") %>'>
<img src='<%# DataBinder.Eval(Container.DataItem, "ItemNumber", "http://localhost/images/{0}.jpg") %>' height='60' width='100'>
</a>
Any advice would be appreciated.
|