M
Mike
Is it possible to do this in the HTML of the aspx page?
<#% if Eval("Name") != null %>
write something here
<#% else %>
show message for missing name
<#% end if %>
when I try this I get errors for missing (, or IF is not recognized, etc.
how can I get this to work without adding it to the code behind? I need to do this in a GridView that is using template fields with links in the fields
<#% if Eval("Name") != null %>
write something here
<#% else %>
show message for missing name
<#% end if %>
when I try this I get errors for missing (, or IF is not recognized, etc.
how can I get this to work without adding it to the code behind? I need to do this in a GridView that is using template fields with links in the fields