I have the below GridTemplateColumn bound from a sql data source. I need help developing an empty Item template or I need a way to check to see if there is a value in MSDSLocation. Any thoughts on this would be appreciated.
<telerik:GridTemplateColumn HeaderText="MSDS" DataField="MSDSLocation">
<ItemTemplate>
<a href='<%# Eval("MSDSLocation") %>' target="_blank">
<img src="/images/icons/msds-icon.gif" alt='<%# Eval("Name") +" MSDS" %>' style="border: none; width: 40px;" />
</a>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="MSDS" DataField="MSDSLocation">
<ItemTemplate>
<a href='<%# Eval("MSDSLocation") %>' target="_blank">
<img src="/images/icons/msds-icon.gif" alt='<%# Eval("Name") +" MSDS" %>' style="border: none; width: 40px;" />
</a>
</ItemTemplate>
</telerik:GridTemplateColumn>