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

public class cs_setvalue : OboutInc.oboutAJAXPage
{
public void 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");
}
public void 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");
}
public void ServerSetValueTextarea() {