FAQ
   manual.pipni.com > Web  |  Search  |  Problems?

How to use ASP here at PIPNI?
ASP, or Active Server Pages. In Administration > Web permit the ASP execution by checking the appropriate box (the changes will take place during the following 60 minutes). ASPs can only be set globally for the entire domain.
A very simple ASP page might look like this:
<%
  Response.ContentType = "text/html; charset=utf-8"
%>
<html>
  <head>
    <title>Test</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body>
  <%
    Response.write(Now & "<br>"):
    Response.write("1234567890"):
  %>
  </body>
</html>

Note: Considering that we are using Tomcat to run ASPs, the UTF-8 encoding must be used.
Total count of tips: 141
Created by PIPNI
Powered by Firebird