?? simple.jsp
字號:
<!--simple.jsp 文件代碼-->
<%@page contentType="text/html; charset=GB2312"%>
<html>
<head><title>一個簡單的JSP程序</title></head>
<body>
<center>
<table border=1>
<%
for(int i=1;i<6;i++)
out.println("<tr><td width=100 align=center>第 "+i+" 行</td></tr>");
%>
</table>
</center>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -