Web Connection
RenderAspScript loopback WC 8.1
Hello,
I don't use scripts in my project. So just play to see how it work's.
Stock HelloScript is ok.
Try to script a pure HTML without any template reference and function in the process. (nPageScriptMode = 3)
A prg is generated and compiled but RenderAspScript loopback

Use Response.ExpandScript()
inside of Web Connection code... it uses RenderAspScript()
internally but sets up properly.
Otherwise post some sample code please and I'll take a look.
+++ Rick ---
It's ok, my mistake was to use '<%= RenderContent() %>' without a template
This Html page is Ok .
<!DOCTYPE html>
<html>
<body>
<%= RenderSection("content") %>
</body>
</html>
<% section="content" %>
<%
PUBLIC pcPageTitle
pcPageTitle = "Hello Script World"
%>
<%= pcPageTitle %>
<% endsection %>