摘要: 第1章 JSP概述例子1example1_1.jsp<%@ page contentType="text/html;charset=GB2312"%><HTML><BODY BGCOLOR=yellow><FONT Size=3><P>这是一个简单的JSP页面 <% int i, sum=0; for(i=1;i<=100;i++) { sum=sum+i; } %><P> 1到100的连续和是:<%=sum %></FONT></BODY>< 阅读全文
posted @ 2012-09-24 19:53 数据手艺人 阅读(770) 评论(0) 推荐(0)