You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OboutSuite/AJAXPage/cs_cp_clientevents.aspx.cs

16 lines
443 B

using System;
using OboutInc;
public class cs_cp_clientevents : OboutInc.oboutAJAXPage
{
protected OboutInc.CallbackPanel callbackPanel1;
void Page_Load(object sender, EventArgs e) {
callbackPanel1.BeforePanelUpdate += new OnBeforePanelUpdate(oboutAJAXPage_BeforePanelUpdate);
}
private bool oboutAJAXPage_BeforePanelUpdate(string PanelId, string UpdateContainer) {
System.Threading.Thread.Sleep(2000);
return true;
}