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.

16 lines
334 B

imports System
public class vb_clientevents
inherits OboutInc.oboutAJAXPage
sub Page_Load(byval sender as object, byval e as EventArgs)
RequestTimeoutMilliseconds = 4000
end sub
public sub MyServerMethod(byval withTimeout as boolean)
if withTimeout
System.Threading.Thread.Sleep(5000)
end if
end sub
end class