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.
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.
Copyright © 2021 Jogjafile Inc.
You can use a ternary expression inside the binding:
Or make a helper method for slightly cleaner syntax: