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.
OboutSuite/AJAXPage/aspnet_externalcallback.aspx

16 lines
356 B

<%@Page Language="C#" Inherits="OboutInc.oboutAJAXPage" %>
<script runat="server">
public string DoCallback()
{
return "callback result";
}
</script>
<html>
<head runat="server">
<script>
function DoCallback()
{
ob_post.post(null, "DoCallback", function(result){alert('callback done -> ' + result)})
}
function DoExternalCallback()