訪問主頁的我有一個無法從內容頁面
<input type="button" id="Button1">
Master1.master
母版。 (位於
<div>
)。
我也有一個內容頁面Main.aspx
。 我想在我從另一個頁面訪問內容頁面Main.aspx
時將按鈕的可見性設置爲true
。 (我有一個Login.aspx
頁面,並且在插入用戶/ psw並按下按鈕後,我將ged重定向到Main.aspx
)。
我已經加入該指令<%@ MasterType virtualpath="~/Master1.master" %>
,我使用下面的代碼
Button home = new Button();
home = (Button)Master.FindControl("Button1");
home.Visible = false;
但是我得到一個NullReferenceException
當我嘗試運行此。 所以基本上我看不到「Button1」。 我試圖將值更改爲head
或ContentHolder1
,並且這些值完美運行。
任何人都可以幫我嗎?