Web 部件处于编辑模式吗?
我的页面中有一个 Web 部件,我需要知道如何确定该页面当前是否处于编辑模式。例如:if(Page.IsInEditMode)
。
有什么帮助吗?
I have a webpart in a page and I need to know how I can determine if the page is currently in edit mode. For example: if(Page.IsInEditMode)
.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 System.Web.UI.WebControls.WebParts.WebPartManager 类,
它有一个 EditDisplayMode 属性,表示最终用户可以编辑和修改服务器控件的显示模式。请参阅文档此处
Have a look at the class System.Web.UI.WebControls.WebParts.WebPartManager
It has an EditDisplayMode property that represents the display mode in which end users can edit and modify server controls. See doc here