日期:2014-05-18 浏览次数:20432 次
For Each Content As Content In Panel1.Controls Content.GetType() Next
For Each cc As Control In Panel1.Controls cc.GetType() Next
------解决方案--------------------
For Each ctl as Control In Panel1.Controls
If ctl.GetType().ToString() = "System.Web.UI.WebControls.Content" Then
End If
Next