blob: 59322cc9fa6de393ad5c97188f8745b6d24f2357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<HTML>
<TITLE>
Samba4 ESP test
</TITLE>
<BODY>
including /scripting/test.ejs<p>
<% include("/scripting/test.ejs"); %>
calling a function from test.ejs ...<p>
<% showArray("request", request); %>
including /scripting/test.esp<p>
<% include /scripting/test.esp %>
calling a function from test.esp ...<p>
<% res = testfn('foo'); %>
result is: @@res
<form name="Cancel" method="POST" action="index.html">
<input name="submit" type="submit" value="Cancel"><br>
</form>
</BODY>
</HTML>
|