N
Neil
Hi I have this page which has a dynamically loaded product list. I need to
allow users to click on an item in the list and theis load up the next page
according to what they've clicked.
In asp I would just have a link such as range.asp?ID=<%code for RangeID%>
In asp.net (2.0) I have
<asp:HyperLink id="HyperLink1" runat="server" Text='<%# Eval("sName") %>'
NavigateUrl='<%# Eval("sRootLink") %>'
__designer:wfdid="w29"></asp:HyperLink>
With sRootLink set to 'range.aspx?ID=1' etc simply because I don't know how
to code this.
What I want is NavigateUrl='range.aspx?ID=' & '<%# Eval("sRootLink") %>' or
something like it, but this always fails!
Any advice appreciated.
cheers,
NEIL
allow users to click on an item in the list and theis load up the next page
according to what they've clicked.
In asp I would just have a link such as range.asp?ID=<%code for RangeID%>
In asp.net (2.0) I have
<asp:HyperLink id="HyperLink1" runat="server" Text='<%# Eval("sName") %>'
NavigateUrl='<%# Eval("sRootLink") %>'
__designer:wfdid="w29"></asp:HyperLink>
With sRootLink set to 'range.aspx?ID=1' etc simply because I don't know how
to code this.
What I want is NavigateUrl='range.aspx?ID=' & '<%# Eval("sRootLink") %>' or
something like it, but this always fails!
Any advice appreciated.
cheers,
NEIL