Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如标题所说,是否可以在不将显示模式设置为编辑的情况下让用户访问富文本编辑器的编辑功能(即为该特定控件提供非编辑器编辑权限)?
您需要提升他们在您希望他们拥有这些权限的特定区域的权限。我不知道有什么开箱即用的东西可以进行这种类型的自定义,因为编辑功能——就像你提到的那样——与权限紧密相关。
SPSecurity.RunWithElevatedPrivileges(delegate() { using (SPSite site = new SPSite(web.Site.ID)) { // Do things by assuming the permission of the "system account". } });
http://msdn.microsoft.com/en-us/library/aa543467.aspx