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.

13 lines
316 B

imports System
public class vb_async
inherits OboutInc.oboutAJAXPage
public function onDnD2(byval number1 as int32, byval number2 as int32) as string
dim dt as DateTime = DateTime.Now
while (DateTime.Now.Subtract(dt).Seconds < 3)
end while
return (number1 + number2).ToString()
end function
end class