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.

12 lines
237 B

public class vb_createtimer1
inherits OboutInc.oboutAJAXPage
public sub ServerCreateTimer ()
CreateTimer("MyTimer", "fillDiv('myDIV')", 3000)
end sub
public sub ServerCancelTimer ()
CancelTimer("MyTimer")
end sub
end class