vote up 0 vote down star

We have URLs of the form

http://site/controller.mvc/action

If we accidentally write a relative URL for an image into the html (say src="imgs/img1.gif") this results in the browser making a request to:

http://site/controller.mvc/action/imgs/img1.gif

Which gets routed through to the controller but then cannot resolve to an action method.

This is fine except we would rather use routing to prevent this ever happening (so TempData doesn't get emptied and whatever).

However if we put a custom constraint in to stop this happening (using Regular Expressions) we get a 200 and an empty response rather than the expected 404. Any ideas?

flag

67% accept rate

2 Answers

vote up 0 vote down

I'd suggest you'll use a helper method, and then from there make sure to stick a slash in front of the paths (e.g. "/content/img/img1.gif").

See tip #2 at http://weblogs.asp.net/rashid/archive/2009/04/01/asp-net-mvc-best-practices-part-1.aspx

link|flag
vote up 2 vote down

I always prefix my images with HttpRuntime.AppDomainAppVirtualPath

Like this;

background="<%=HttpRuntime.AppDomainAppVirtualPath %>/Content/images/aqua.jpg"

Also I think your imgs folder needs to be under the Content folder.

src="/content/imgs/img1.gif

The shortcut to this is actually the "~" (tilde) character, but I prefer to write it out.

src="~/content/imgs/img1.gif"

You could also create a static variable to hold this value,

public static string VP = HttpRuntime.AppDomainAppVirtualPath;

Then on you page do it this way,

background="<%=VP%>/Content/images/aqua.jpg"

This is much easier than writting a helper to return a simple string.

link|flag
1  
The thing with "accidentially" is that in most cases it happens unintentionally. Still +1 for HttpRuntime.AppDomainAppVirtualPath even though it doesn't really answer the question. – Michael Stum Aug 28 at 11:52
1  
"accidentially" in programming is called a bug, and needs to be corrected manually. – Tony Borf Aug 28 at 11:57
You should really use Url.Content for this rather than reinventing it in every view you write. – Craig Stuntz Aug 28 at 12:28
Agree with Tony here. Thanks for the tip but we are looking to provide a safeguard against carelessness here. – Gaz Aug 28 at 13:31
Sorry, I meant agree with Michael – Gaz Aug 28 at 13:54
show 3 more comments

Your Answer

Get an OpenID
or

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