I have this check in ListView
<%# Eval("Count") != null ? Eval("Count") : 0%>/<%# Eval("MaxRange")%>
now i want to change that if count is null then it should show nothing.
I tried this but no avail.
<%# Eval("Count") != null ? Eval("Count") + '/' + <%# Eval("MaxRange")%> : null %>
Please let me know how to do this.
Thanks.
try this
I think this should work