1。<%@ page import="java.util.*" %>
2。<%!
PRivate static int guestNum;
public void jspInit() {
...
}
public void jspDestroy() {
...
}
%>
3。<% out.write(request.getRequestURI());%>
4。<%= "hello" %>
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.io.*" %>
<%-- 这是注释的方法 --%>
<%//当然这样也是可以的%>
<%-- 2中的定义 --%>
<%!
private static int guestNum;
public void jspInit() {
guestNum = 0;
}
%>
<html>
<head>
<title>
hello
</title>
</head>
<body bgcolor="#00ffff">
<h1>
<%-- 4中的方法 --%>
<%= "hello from:" %>
<%-- 3中的方法 --%>
<% out.write(request.getRequestURI());
guestNum ++;
%>
<br>
<%= "You are the " + guestNum + " guest!
" %>
</h1>
</form>
</body>
</html>
(出处:http://www.VeVb.com)
新闻热点
疑难解答