我正在以编程方式更改sharepoint 2010文档库的项目URL。一旦用户点击库中的文档,文档应该重定向到NewItemURL,为此我写了下面的代码,但它没有给出预期的结果。有人可以帮我解决这个问题。
string oldItemURL = item.Web.Url + "/" + item.File.Url;
string NewItemURL = "/Sites/MyTestSite/_layouts/MyCustomApplicationPage/MyCustomApplicationPage.aspx?ItemId=" + docID;
item.Url.Replace(oldItemURL, NewItemURL);
item.Update();