Control.Load Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Terjadi ketika kontrol server dimuat ke Page dalam objek.
public:
event EventHandler ^ Load;
public event EventHandler Load;
member this.Load : EventHandler
Public Custom Event Load As EventHandler
Jenis Acara
Contoh
// This is the constructor for a custom Page class.
// When this constructor is called, it associates the Control.Load event,
// which the Page class inherits from the Control class, with the Page_Load
// event handler for this version of the page.
public MyPage()
{
Load += new EventHandler(Page_Load);
}
' This is the constructor for a custom Page class.
' When this constructor is called, it associates the Control.Load event,
' which the Page class inherits from the Control class, with the Page_Load
' event handler for this version of the page.
Public Sub New()
AddHandler Load, AddressOf Page_Load
End Sub
Keterangan
Memberi tahu kontrol server untuk melakukan langkah-langkah pemrosesan apa pun yang diatur untuk terjadi pada setiap permintaan halaman. Anda dapat mengakses informasi status tampilan dan data POST formulir Web dari kejadian ini. Anda juga dapat mengakses kontrol server lain dalam hierarki kontrol halaman.
Catatan
Jika Anda mengatur templat kustom dalam kontrol selama Page_Load
peristiwa, nilai teks kontrol anak dalam templat kustom akan hilang. Ini terjadi karena nilai formulir telah dimuat.