Reputation: 352
View Bookings
I want something like
<pre>
<asp:HyperLink ID="h" runat="server" NavigateUrl='~/test.aspx?id=Bind("instructor_id")'> View Bookings</asp:HyperLink>
</pre>
Upvotes: 1
Views: 44
Reputation: 73731
You can do it this way:
NavigateUrl='<%# "~/test.aspx?id=" + Eval("instructor_id") %>'
Upvotes: 2