The following declaration in my ASPX file contains an ERROR within the IIf() arguments...
<br /><asp:Label ID="lblvalLOF_IS_DUE" runat="server"
Text='<%# IIf((Eval("aIsLOF_Due") = "True"), "☑", "☐")%>'
style="font-size: 2em;"/>
The error that shows in the [Error-List] window is:
Argument not specified for parameter 'FalsePart' of 'Public Function IIf(Expression As Boolean, TruePart As Object, FalsePart As Object) As Object'.
There is a "squiggly" underline from IIF to the end-quote of #9745;" indicating that there is a syntax error within the IIf arguments.
I think there is some conflict with the declaration of the special-characters -- either QUOTEs or AMPERSAND or # symbol.
Any guidance will be appreciated. Thanks in advance.