0
点赞
收藏
分享

微信扫一扫

jsp代码实例第366课


code366.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
out.println("<table border='1'>");
for(int i=1;i<=10;i++)
{
out.println("<tr>");
for(int j=1;j<=5;j++)
{
out.println("<td>a</td>");
}
out.println("</tr>");
}
out.println("</table>");
%>
</body>
</html>


举报

相关推荐

jsp代码实例第372课

jsp代码实例第301课

jsp代码实例第371课

jsp代码实例第300课

jsp代码实例第345课

jsp代码实例第343课

0 条评论