开发者

ASP MVC Friendly URL's and Relative Path Images

开发者 https://www.devze.com 2023-01-09 18:19 出处:网络
I have an ASP.NET MVC page, where I am trying to show friendly URL\'s. So, I have a Category View in the Home Controller, that accepts a categoryKey value to get the content of the page.

I have an ASP.NET MVC page, where I am trying to show friendly URL's.

So, I have a Category View in the Home Controller, that accepts a categoryKey value to get the content of the page.

For instance: http://localhost/Home/Category/Bikes gets the bike content.

in my Global.asax.cs, i 开发者_Go百科have the following to handle this:

public static void RegisterRoutes(RouteCollection routes)
{
  routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

  routes.MapRoute(
      "Category",
      "{controller}/{action}/{categoryKey}",
      new { controller = "Home", action = "Category", categoryKey = "" });

  routes.MapRoute(
      "Default", // Route name
      "{controller}/{action}/{id}", // URL with parameters
      new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
  );
}

This works just fine, and it gets the content, however, I am getting the content from a Content Management system, for easy editing. When you add an image on the content management, it adds the image with a relative path:

<img src="../AdminUploadContent/bikes.gif" alt="Bikes" />

Now, if i goto "http://localhost/Home/Category", and that image tag is on the base page, it will pull up the image. However, if i goto "http://localhost/Home/Category/", or add the actual category of "/Home/Category/Bikes"/, the image doesn't show up. The properties of the image is pointing to "http://localhost/Home/AdminUploadContent/bikes.gif".

Is there anything I can put in my Global.aspx.cs file to handle the relative path? Even if i manually edit the content management to add ../../AdminUploadContent/bikes.gif, it is chopping off the first ../, since it is doing some validation.


Use the Url.Content method when generating a path to your image.

<img src="@Url.Content("~/AdminUploadContent/bikes.gif")" />

or if using the WebForms view engine:

<img src="<%= Url.Content("~/AdminUploadContent/bikes.gif") %>" />


You can use the relative path " ~/ " to refer to the current virtual directory where the page is located. Try to add runat="server" attribute to your "img" tag and "~" sign in "src" attribute:

<img runat="server" src="~/AdminUploadContent/bikes.gif" alt="Bikes" />


This works too.

<img src="@Url.Content("~/Images/yourimage.png")"/>


You can implement a custom http module that will rewrite path from the relative ../../img.png to needed handling the Referer http header, for instance.


I had to just Add / to the src attribute

Before:

<div><img alt='' src='" & image_url & "' style='vertical-align: top; height: 40px'/><div class='auto-style1' style='padding: 10px'></div>

After:

<div><img alt='' src='/" & image_url & "' style='vertical-align: top; height: 40px'/><div class='auto-style1' style='padding: 10px'></div>

Where image_url is a Function of my page code-behind class.

0

精彩评论

暂无评论...
验证码 换一张
取 消