Reputation: 9327
I get this message on this line below:
<asp:LinkButton ID="someID" CommandArgument="<%# Eval("ID") %>"
OnClick="someEvent_Click"
runat="server">some text</asp:LinkButton>
It does not like, that I put Eval
into CommandArgument
. What's wrong here?
Upvotes: 4
Views: 4897
Reputation: 7009
"<%# Eval("ID") %>"
is the culprit. Eventully its only CommandArgument="<%# Eval("
rest makes syntax error. Try pair of double quotes to pair of single quote. Like this CommandArgument='<%# Eval("ID") %>'
Upvotes: 2
Reputation: 2401
It should look like this, with single quotes:
<asp:LinkButton ID="someID" CommandArgument='<%# Eval("ID") %>'
OnClick="someEvent_Click" runat="server">some text</asp:LinkButton>
Upvotes: 19
Reputation: 30922
<asp:LinkButton ID="someID" CommandArgument="<%# Eval('ID') %>" OnClick="someEvent_Click" runat="server">some text</asp:LinkButton>
Use single a single apostrophe.
Upvotes: 3