我必须找到MasterPage中所有contentPlaceHolders的ID。
在ASP.Net主页面中查找所有的ContentPlaceHolders。
原标题:
最佳回答
循环遍历所有控件,递归遍历它们的子控件,检查它们的类型,如果它们是内容占位符,则拥有该ID。
问题回答
只需查询ContentPlaceHolders
属性,它返回一个IList,其中包含给定主页面中所有CPH名称。
VB 代码:(对不起!)
In the Master Page.
For Each cphID As String In Me.ContentPlaceHolders
Debug.WriteLine(cphID)
Next
尝试 (cháng shì)
for (string cphID in ((MasterPageType)this.MasterPage).ContentPlaceHolders)
{
Debug.WriteLine(cphID);
}
在页面的代码后面,将MasterPageType替换为您主页面的类型。
相关问题
热门标签
- winforms
- combobox
- fogbugz
- java
- date
- internationalization
- asp.net
- iis
- url-rewriting
- urlrewriter
- c#
- enums
- ocaml
- haxe
- algorithm
- string
- viewstate
- .net
- c++
- c
- symbol-table
- mysql
- database
- postgresql
- licensing
- migration
- vb.net
- vb6
- declaration
- vb6-migration
- python
- psycopg2
- backup
- vmware
- virtualization
- gnu-screen
- authentication
- desktop
- excel
- xll
- cultureinfo
- regioninfo
- oracle
- client
- session
- download
- html
- virtual
- constructor
- scenarios
- perl
- full-text-search
- javascript
- ajax
- testing
- oop
- inheritance
- vim
- encapsulation
- information-hiding