如何在剃刀中拆分URL路径

时间:2011-10-19 15:15:04

标签: asp.net-mvc asp.net-mvc-3 razor url-rewriting split

我的图片网址路径如下:

http://localhost:3810/images/test.png

我正在寻找的是分割路径并获取路径,例如:/images/test.png 使用剃刀。

任何帮助或建议都将不胜感激

1 个答案:

答案 0 :(得分:3)

您可以像这样使用Uri类:

@{
    Uri uri = new Uri("http://localhost:3810/content/images/thumbs/0000019.png");
    string path = uri.PathAndQuery;
}

path变量将为/content/images/thumbs/0000019.png