0

I am using a repeater for some products I am listing.

I'm trying to build an asp:HyperLink NavigateUrl using both hardcoded text as well as XPATH data.

NavigateUrl='mypage.aspx?ID=<%#XPath("THEID")%>&name=<%#XPath("THENAME")%>'

Obviously this isn't working.

Does anyone know how to make this work?

4

1 回答 1

3

This should work:

<asp:HyperLink 
    runat="server" 
    NavigateUrl='<%# string.Format("mypage.aspx?ID={0}&name={1}", XPath("THEID"), XPath("THENAME")) %>' 
    Text="some link" 
/>
于 2009-11-28T19:47:51.460 回答