vote up 0 vote down star

Hello guys,

I have an application using MVC. In my controller I have their a viewdata[] which contains the image path (Viewdata["dd"]=new Control().ResolveUrl(path)). This will work on my local but on the deploy it will not work anymore.

Anybody have experience this scenario?

Your reply is greatly appreciated.

Best

flag

63% accept rate

2 Answers

vote up 0 vote down check

Why not use this:

Controller:

ViewData["dd"] = path;

View:

<img src='<%= Url.Content((string)ViewData["dd"])%>' alt="" />
link|flag
vote up 0 vote down

Try this:

ViewData["dd"] = System.Web.VirtualPathUtility.ToAbsolute("~/RelativeAddress");

Keep in mind that this will throw exceptions if you have any query parameters in your URL. To resolve URLs with query paramters you'll have to temporarily remove them before you resolve and then add them back in later.

link|flag

Your Answer

Get an OpenID
or

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