我正在使用 ASP.NET 4 Web 表单路由,例如这样:
routes.MapPageRoute("page-browse", "{Language}/{Label}", "~/Default.aspx")
所以网络地址可能看起来像:http://localhost/mywebsite/eng/home
在我网站的根目录中,我有一个文件夹“图像”。
当我在我的网站的根目录中时,图像显示工作,例如通过使用http://localhost/mywebsite/default.aspx
但是当使用路由时它不起作用,因为图像相对 url 将查看http://localhost/mywebsite/eng/images
而不是http://localhost/mywebsite/images
有没有办法使用 ASP.NET 4 路由机制来防止这种情况?或者是对图像使用绝对网址的唯一方法?