LiveASP - Calling ASP functions live from JavaScript
<%
' A simple function for this demo
function JoinStrings(string1,string2 )
JoinStrings = string1 & string2
end function
ASPAjax.EnableLiveASP("JoinStrings") ' Registers the JoinStrings function for LiveASP
'ASPAjax.Path="/aspajax/"
ASPAjax.Open()
' set up ASPajax
%>
In this Tutorial we see that Javascript can now call any ASP function and return a result.
With a true Remote Method Invocation framework for ASP / Javascript, the possibilities and endless.