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
520 B

public class vb_setvalue
Inherits OboutInc.oboutAJAXPage
public sub ServerSetValueText()
' this will set the value of element with id "textElement" to a custom value
' just to show that it works with input elements (textboxes)
SetValue("textElement", "someCustomValue")
end sub
public sub ServerSetValueSelect()
' this will set the value of element with id "selectElement" to a custom value
' just to show that it works with dropdown elements (comboboxes)
SetValue("selectElement", "3")
end sub