Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%RSDispatch%>
<!--#include file="../_scriptlibrary/rs.asp"-->
<script language="javascript" runat="SERVER">
var public_description = server_object;
function server_object()
{ this.TestFunction = testfunction;
}
function testfunction(text_to_bold)
{ return '<b>' + text_to_bold + '</b>';
}
</script>
<script language=javascript src="../_scriptlibrary/rs.htm"></script>
<SCRIPT language=Javascript src="../_scriptlibrary/rs.htm">
</SCRIPT>
<script Language=javascript>
function testSync()
{ text_to_bold = testtext.value;
co = RSExecute("backend.asp","TestFunction",text_to_bold);
alert(co.return_value);
}
</script>
<input type="text" name="testtext" id="testtext">
<button onClick="testSync();">Test Me</button>