hi.
i have this href within a repeater control:
i'm trying to put Container.DataItem("user_id") where the ??????? is
in classic isp i would use <%response.write user_id%>
but vb.net is different and i can't figure out what code to use.
any suggestions would be appreciated.
i have this href within a repeater control:
Code:
<td>
<a id="Anchor1" href="Page.aspx?uid=?????????" runat="server">
</a>
</td>
<td><%#Container.DataItem("user_id")%></td>
<td><%#Container.DataItem("last_name")%></td>
<td><%#Container.DataItem("first_name")%></td>
<td><%#Container.DataItem("middle_name")%></td>
in classic isp i would use <%response.write user_id%>
but vb.net is different and i can't figure out what code to use.
any suggestions would be appreciated.