up vote 1 down vote favorite
share [g+] share [fb]

how do i implement an eval script in a sever side control?

eg. <a runat="server" href="?id=<%= Eval("Id") %>">hello world</a>

link|improve this question
feedback

3 Answers

If the server-side control is within a databound control (ListView, GridView, FormView, DetailsView), then the syntax is: <%# Eval("Id") %>.

If the server-side control is not within a databound control, you will have to access it via the code-behind and set your attribute there.

link|improve this answer
feedback

<%# Eval("Id") %>

as far as I know, its <%# instead of <%=

link|improve this answer
feedback

The Data-Binding expression is your friend, see MSDN for examples.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.