2010-09-17 58 views

回答

6

要從您的aspx頁面獲取主頁面,您可以使用this.Master,並將可以將它們的Visible屬性設置爲false的元素隱藏起來。

http://msdn.microsoft.com/en-us/library/system.web.ui.page.master.aspx
http://msdn.microsoft.com/en-us/library/486wc64h.aspx
http://msdn.microsoft.com/en-us/library/system.web.ui.control.visible.aspx

((UserControl)this.Master.FindControl("ucTopUser")).Visible = false; 
((Button)this.Master.FindControl("btnSub")).Visible = false; 
0

另一種可能性是使用jQuery。只需將$("#ucTopUser").hide(); $("#btnSub").hide();添加到$(document).ready()函數中即可。

相關問題