⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usebeanjsp.jsp

📁 精通Java核心技术的随书源代码
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" %>
<html>
<head>
<title>
UseBeanJsp
</title>
</head>
<jsp:useBean id="student" scope="request" class="StudentBean" />
<jsp:setProperty name="student" property="*" />
<body bgcolor="#ffffff">
<h1>
Use JavaBeans in JSP
</h1>
<form method="post">
<input type="submit" name="Submit" value="Submit">
<input type="reset" value="Reset">
<hr>student<br>
<br>Enter Your Name:<input type="text" name="name">
<br>Your Name: <jsp:getProperty name="student" property="name" /><br>
<hr>
Select Your Favorite:
<br><input type="checkbox" name="favorite" value="Basketball">Basketball
<br><input type="checkbox" name="favorite" value="Football">Football
<br><input type="checkbox" name="favorite" value="Music">Music
<br><input type="checkbox" name="favorite" value="Reading">Reading
<br><input type="checkbox" name="favorite" value="PC Game">PC Game
<br>Your favorite: 
<%
	String[] favorite = student.getFavorite();
    if (favorite != null) {
       for (int i =0; i < favorite.length; i ++) {
          out.println(favorite[i]);
	}
    }
%>
<hr><br>
</form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -