1.jsp的helloWorld:
做jsp的实验步骤非常简单。在eclipse当中,右键点击代表你WebModule的根目录的WebContent。new/jsp 即可。
例 1.1
<%@ page contentType="text/html; charset=GBK"%>
<html>
<%!private int accessCount = 0;%>
<%!double called() {
return Math.random();
}%>
<%=++accessCount%>
<%
if (called() < 0.5) {
%>
天气好
<%
} else {
%>
天气不好
<%
}
%>
</body>
</html>
更多请看:https://blog.csdn.net/qq_44594371/article/details/103167490
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。