I have a gridview with:
<li><%#Eval("position.name") %> @ <%#Eval("employer.name")%></li>
The result in browser is:
Developer @ companyName
But if the position name is empty. I just see this:
@ companyName
How can i hide the “@” sign when there is no position available to show?
Thanks!
1 Answer