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

<%@ Page Language="C#" ASPCOMPAT="TRUE" Debug="true" Inherits="OboutInc.oboutAJAXPage"%>
<script language="C#" runat="server">
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() {