What is the syntax to concatenate text into a binding expression for an asp.net webpage (aspx).
For example if I had a hyperlink that was being bound like this:
You can also place the "concatenation" in the text portion of a tag if using a template field:
<%--Enter any text / eval bindind you want between the tags--%> <%# Eval("Name") %> (<%# Eval("ID") %>)
This results in output like:
Name (ID)
inside of the template column.