This is a test of ADP
<%
## Proxies should cache this page for a maximum of 1 hour:
ns_setexpires $conn 3600
set host [ns_set iget [ns_conn headers $conn] host]
## How many times has this page been accessed
## since the server was started?
ns_share -init {set count 0} count
incr count
%>
Number of accesses since server start: <%=$count%>
tcl_version: <%=$tcl_version%>
tcl_library: <%=$tcl_library%>
Host: <%= $host %>
<%
ns_adp_include standard-header
%>
Here's an example of streaming:
End