如何在 SharePoint 2007 和 2010 中以编程方式直接转到 Web 部件的编辑视图?

发布于 2024-11-30 21:49:28 字数 214 浏览 2 评论 0原文

我想提供有关 Web 部件内容的链接。单击链接后,我想切换到编辑视图(用户可以在其中设置 Web 部件的属性)。请参见下图。如何在 SharePoint 2007 和 2010 中以编程方式直接转到以下视图。

在此处输入图像描述

I would like to provide a link on webpart content. On click of the link i want to switch to the edit view (Where user can set properties of Webpart). See the image below. How can I go to the following view directly programmatically in SharePoint 2007 and 2010.

enter image description here

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

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

发布评论

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

评论(1

盛夏尉蓝 2024-12-07 21:49:28

是的,找到了答案。

    <asp:LinkButton ID="ButtonEdit" style="padding-right:5px;" runat="server"
                  Font-Names="Arial" Font-Size="12px" Font-Underline="True"  
                  ForeColor="#003399">Edit</asp:LinkButton>

C# 代码

ButtonEdit.Attributes.Add("onclick", "javascript:MSOTlPn_ShowToolPane2Wrapper('Edit', this,'" + Parent.ID + "');");

我从此 帖子

Yes found the answer.

    <asp:LinkButton ID="ButtonEdit" style="padding-right:5px;" runat="server"
                  Font-Names="Arial" Font-Size="12px" Font-Underline="True"  
                  ForeColor="#003399">Edit</asp:LinkButton>

C# Code

ButtonEdit.Attributes.Add("onclick", "javascript:MSOTlPn_ShowToolPane2Wrapper('Edit', this,'" + Parent.ID + "');");

I took help from this post

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文