Sharepoint 2010 - 重定向到库项目的默认编辑页面

发布于 2024-10-22 05:30:37 字数 92 浏览 4 评论 0原文

我想以编程方式将文档上传到 Sharepoint 库。 上传后,我想将用户重定向到与新库项目关联的编辑页面(OOB 或自定义)。

我如何知道重定向到哪里?

I want to programmatically upoad a document to a Sharepoint library.
After uploading I want to redirect the user to the Edit Page (OOB or custom) associated with the new library item.

How do I know where to redirect to?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奈何桥上唱咆哮 2024-10-29 05:30:37

这里有一些示例:

http ://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/2be88c8b-812b-4574-8c2c-965cedd2f199/

// Edit form full url
string.Format("{0}{1}?ID={2}", item.Web.Url, item.ParentList.Forms[PAGETYPE.PAGE_EDITFORM].ServerRelativeUrl, item.ID);

// Edit form relative url
string.Format("{0}?ID={1}", item.ParentList.Forms[PAGETYPE.PAGE_EDITFORM].ServerRelativeUrl, item.ID);

There's some examples here:

http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/2be88c8b-812b-4574-8c2c-965cedd2f199/

// Edit form full url
string.Format("{0}{1}?ID={2}", item.Web.Url, item.ParentList.Forms[PAGETYPE.PAGE_EDITFORM].ServerRelativeUrl, item.ID);

// Edit form relative url
string.Format("{0}?ID={1}", item.ParentList.Forms[PAGETYPE.PAGE_EDITFORM].ServerRelativeUrl, item.ID);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文