Can some one tell me if I how I can use Url.Content when my URL contains an embedded code nugget like below?
<a class='highslide' id="baseThumb" href="../../Helpers/ImageHandler.ashx?imageid=<%= Model.ImageIDs[0] %>&thumbnail=0">
<img runat="server" src="../../Helpers/ImageHandler.ashx?imageid=<%= Model.ImageIDs[0] %>&thumbnail=1" alt=""/>
</a>
My image above only gets display on my local development environment, never when I deploy to a server. The ImageHandler is not found due to the URL being incorrect.
Thanks