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.

10 lines
581 B

<%@ Page Language="VB" Inherits="OboutInc.oboutAJAXPage" %>
<%@ Import Namespace="System.Data.OleDb" %>
<script language="VB" runat="server">
' implement a method with the same name as the event
' the arguments of the method must be the same ones we added on client-side using the AddParam function
Public Function OnNodeEdit(ByVal id As String, ByVal text As String, ByVal prevText As String) As String
Return "The OnNodeEdit event was executed server-side - the node with the id=" + id + " was edited. Its new text is " + text
End Function
</script>