asp.net中某些特定字符后的查询字符串中的所有值

时间:2013-09-17 10:23:39

标签: c# asp.net string split

我的链接如下:

http://localhost:7410/SageFrame/MusicVideoDetails.aspx/id/rLmaJ5gRgXCDxURaTcofOg==

我需要字符/ in / text,这意味着我需要:

"rLmaJ5gRgXCDxURaTcofOg=="

我该怎么做?

1 个答案:

答案 0 :(得分:0)

试试这个:

string result = link.Substring(link.IndexOf("/id/") + 4);