Currently I have this.. which works fine
<asp:ImageButton ID="ImageButton1" runat="server" Width="80" Height="60" ImageUrl='<%# Bind("ImageUrl") %>' PostBackUrl='<%#Eval("Invno")%>' />
However, the database is hard coded to pull “/item.aspx?innvo=1234”
I need however to put a sub directory in there first, so “/test/item.aspx?innvo=1234”
I can not change the hard coding in the table as it effects other things.
So I just need to know how to put the /test/ in there as everything I have tried fails 🙂
or