如何更改sharepoint 2010文档库中的项目URL

时间:2013-12-22 14:10:16

标签: c# sharepoint-2010

我正在以编程方式更改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();

0 个答案:

没有答案