I have the Following ASP code:
<asp:DataList ID="dlGallery" runat="server"
<ItemTemplate>
<div style="float: left; padding-right: 10px; text-align: center">
<img src="<%= ApplicationPath%><%# Eval("ImageUrl") %>"width="80"/>
</ItemTemplate>
</asp:DataList>
I get this Error: Compiler Error Message: CS0103: The name 'ApplicationPath' does not exist in the current context
What is it mean?What may be problem with ApplicationPath?
Thank You in Advance