0
我想刪除主頁面爲內容佔位符應用的所有樣式,但是在子頁面內的代碼中執行此樣式。 我試圖使用以下,但它什麼也沒做。刪除子頁面中所有當前應用的ContentPlaceHolder樣式?
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
ContentPlaceHolder mpContentPlaceHolder = (ContentPlaceHolder)Master.FindControl("cphCenterColumn");
mpContentPlaceHolder.EnableTheming = false;
}
}