RE:Transformation Empty
Forum Post
Nov 21, 2013
Hello, Thank you for your message. You can use IfEmpty function for your purpose. The syntax is following: IfEmpty(object value, object emptyResult, object nonEmptyResult) An example can be: <%# IfEmpty(Eval("ProductPhoto"), "no image", GetImage("ProductPhoto")) %> ...