I'm trying to concatenate an Eval data to an OnClientClick function. What I did is this:
<asp:LinkButton id="Activate" runat="server" OnClientClick='return confirmActivate(<%# Eval("nameID")%>);'>Activate</asp:LinkButton>
But it shows the code of Eval inside when I inspect it's element. How could I put nameID's data inside the OnClientClick function??