📄 showtimejsp.jsp~1~
字号:
<%@ page contentType="text/html; charset=EUC_CN" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<html>
<head>
<title>
showtimeJSP
</title>
</head>
<jsp:useBean id="showtimeJSPBeanId" scope="session" class="showtime.ShowtimeJSPBean" />
<jsp:setProperty name="showtimeJSPBeanId" property="*" />
<body bgcolor="#ffffc0">
<h1>
JBuilder Generated JSP
</h1>
<%java.util.Date Mydate=new java.util.Date();%>
<%=Mydate.getMonth()+1%>月
<%=Mydate.getDate()%>日
<%=Mydate.getHours()%>时
<%= Mydate.getMinutes()%>分
<form method="post">
<br>Enter new value : <input name="sample"><br>
<br><br>
<input type="submit" name="Submit" value="Submit">
<input type="reset" value="Reset">
<br>
Value of Bean property is :<jsp:getProperty name="showtimeJSPBeanId" property="sample" />
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -