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

How to use JSP here at PIPNI?
JSP, or Java Server Pages. In Administration > Web permit the JSP execution by checking the appropriate box (the changes will take place during the following 60 minutes). JSPs can only be set globally for the entire domain.
A very simple JSP page (scriptlet) might look like this:
<%@page contentType="text/html; charset=Windows-1250"%>
<html>
  <head>
    <title>Date</title>
    <meta http-equiv="Content-Type" content="text/html; charset=Windows-1250">
  </head>
  <body>
  <%
    out.println(new java.util.Date() + "<br>");
    out.println("qwertyuiop");
  %>
  </body>
</html>

Total count of tips: 141
Created by PIPNI
Powered by Firebird