The URL in the databound object contains something like "~/root/path/test.aspx?id=1". (code below). I want to do Page.ResolveUrl on it inside the ListView. Just can't get the syntax right. Can anyone help please?

<asp:ListView ID="DataLV" runat="server">

    <LayoutTemplate>
        <asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
    </LayoutTemplate>

    <ItemTemplate>
         <a runat="server" href="Page.ResolveUrl(<%#Eval("URL")%>)">View full data</a>
    </ItemTemplate>

</asp:ListView> 
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You need to bring the databinding tags (<%#) outside of the Page.ResolveUrl method, and use single quotes around the href attribute:

href='<%#Page.ResolveUrl(Eval("URL"))%>'
link|improve this answer
That worked like a charm. Now tell me how to remember this :) – Alex J Oct 14 '11 at 18:48
Glad it worked. Can you mark your own quesiton as a favorite? – James Johnson Oct 14 '11 at 18:50
Yes I can. I just wanted to remember this without looking up. Thanks anyway. – Alex J Oct 14 '11 at 19:03
feedback

Your Answer

 
or
required, but never shown

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