JavaScript Object Model
UI Object Model
App.Window1.button1.setLabel("Hello JavaScript");
App.Window1.button1.execute();Remote Methods
public class Window1: Wisej.Web.Form
{
...
[WebMethod]
public void Hello(string name)
{
// Change the window title.
this.Text = "Hello " + name;
}
}
...
public static class Program
{
...
[WebMethod]
public static int Hello(string name)
{
this.Text = "Hello " + name;
// Return the lentgh of the parameter.
return name.length;
}
}Last updated
Was this helpful?

