我正在構建一個模式框作爲自定義服務器控件,我想在模態框TargetControlID上有一個屬性,指定單擊時將顯示模式的元素。我給自己定的屬性了在模態對話框,並在後面的代碼我使用下面的代碼塊(這是我在幾個不同的地方如何從我的自定義服務器控件中訪問頁面控件?
If (_targetControlId <> "") Then
Dim targetControl As WebControl = Me.Page.FindControl(_targetControlId)
targetControl.Attributes.Add("onclick", "test1();")
targetControl.Attributes.Add("onclick", "test2();")
End If
什麼情況是,targetControl總是捲起爲NULL已經試過,並導致頁面崩潰時,我試圖添加屬性,我已經雙重檢查targetControlId的拼寫,我指定一個控制是runat =「服務器」。什麼是服務器控制正確的方式來它包含的頁面上訪問其他控件?
感謝,
邁克
您是否在使用MasterPage? – Jim 2009-10-16 19:35:31