8cc489787c
* NEW: Update french translation. [TEMPLATES] * NEW: Some new templates. git-svn-id: svn://localhost/gambas/trunk@7323 867c0c6c-44f3-4631-809d-bfa615b0a4ec
27 lines
310 B
Text
27 lines
310 B
Text
<%
|
|
Dim sEnv As String
|
|
%>
|
|
|
|
<html>
|
|
<body>
|
|
|
|
<h1>Gambas web application</h1>
|
|
<table border="1" cellpadding="4" cellspacing="0">
|
|
<tr>
|
|
<th>Variable</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
<%
|
|
For Each sEnv In Env
|
|
%>
|
|
<tr>
|
|
<td><%=sEnv%></td>
|
|
<td><%=Env[sEnv]%></td>
|
|
</tr>
|
|
<%
|
|
Next
|
|
%>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|