Take the community feedback survey now.
AI OnAI Off
Take the community feedback survey now.
<%#...%>
is the data binding expression syntax. Is this part of the code included in a server control that is databound? If not, this code will never be executed. Try using
<%=...%>
which is short for
Response.Write(...);