Using the following Eval script for setting ID property causes error. Error message: the server tag is not well formed.
<asp:Panel runat="server" ID="<%# Eval("RENTER_ID") %>" Visible="false">
Even replacing "" with '' of ID property generates error. While using '', its error message
"The ID property of a control can only be set using the ID attribute in the tag and a simple value. Example: <asp:Button runat="server" id="Button1" />
"
Any ideas to solve this?
See Question&Answers more detail:os