当前位置:  开发笔记 > 编程语言 > 正文

通过代码ASP.NET设置ContentPlaceHolder数据

如何解决《通过代码ASP.NET设置ContentPlaceHolder数据》经验,为你挑选了1个好方法。

是否可以通过代码在ContentPlaceHolder中设置数据?这就是我的想法:

dim oCPH as new ContentPlaceHolder
oCPH.id = "column1" 'this id is the one that corresponds with the ID I set on the page
oCPH.content = "content here" '<-- not real code

显然这不是正确的语法,我希望这澄清了我的要求.



1> tvanfosson..:

您应该能够通过当前页面上的MasterPage元素引用它.就像是:

ContentPlaceHolder cph = (ContentPlaceHolder)Master.FindControl("column1");

如果在MasterPage代码隐藏中,只需按名称引用它.

推荐阅读
臭小子
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有