#2
罗新2021-04-03 16:05
|
程序代码:
<%@ page contentType="text/html;charset=utf-8" language="java"%>
<!DOCTYPE html>
<html>
<head>
<title>My first jsp program!</title>
<meta charset="utf-8">
</head>
<%! //声明
public int count;
public String info(){
return "jsp声明测试";
}
%>
<body>
<%
count = 519;
out.ptintln(count+1);
%>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My first jsp program!</title>
<meta charset="utf-8">
</head>
<%! //声明
public int count;
public String info(){
return "jsp声明测试";
}
%>
<body>
<%
count = 519;
out.ptintln(count+1);
%>
</body>
</html>