Hide databind element on control page .ascx

250 Views Asked by At

Here is my code:

<h6><%#Eval("Category").ToString().ToUpper()%></h6>

I want to say that if the Category = "Construction" do not return that text. The h6 tag will be blank.

This is on the ascx page.

1

There are 1 best solutions below

2
On

You can use a ternary expression inside the binding:

<h6><%# Eval("Category").ToString() == "Construction" ? "" : Eval("Category").ToString().ToUpper()%></h6>

Or make a helper method for slightly cleaner syntax:

<script runat="server" language="C#">
    public string GetCategoryLabel(string category)
    {
        return "Construction".Equals(category, StringComparison.CurrentCultureIgnoreCase) ? "" : category.ToUpper();
    }
</script>

<h6><%# GetCategoryLabel(Eval("Category").ToString()) %></h6>