asp.net中的按鈕自動刷新頁面。在調用按鈕事件之前,調用默認的Page_Load函數(我認爲)。按鈕事件後運行功能
我正在尋找調用所有按鈕事件後調用函數的方法。
編輯
我要永遠調用的函數,即使沒有按鈕被按下。所以把這個函數放在按鈕事件中是行不通的。
創建按鈕
ImageButton enc2Button = Hardwarerecorders.DeviceManager.getEncStatusImage(d, "res/", false);
這是click事件
enc2Button.Click += new ImageClickEventHandler(startEnc2);
按鈕事件功能
void startEnc2(object sender, EventArgs e)
{
ImageButton button = (ImageButton)sender;
int arrayIndex = Int32.Parse(button.Attributes["index"]);
Hardwarerecorders.DeviceManager.startEnc((Hardwarerecorders.Device)devices[arrayIndex], false);
}
如果您未添加一些代碼並提高此帖子的質量,則很難爲您提供幫助 – acostela
您是否在談論javascript功能?或者後面的代碼? –
@PiyushKhatri我正在談論一個C#函數 –