protected void btnUpload_Click(object sender,EventArgs e){ // Upload the files to the server}
在存在用户控件的页面上,在用户点击上传按钮后,我想在用户控件中执行按钮点击事件代码后立即执行某些操作.如何在完成工作后点击Click事件?
public event EventHandler ButtonClicked;
然后在你的方法中激活事件……
protected void btnUpload_Click(object sender,EventArgs e){ // Upload the files to the server if(ButtonClicked!=null) ButtonClicked(this,e);}
然后,您将能够附加到用户控件的ButtonClicked事件.