bean-properties.jsp

来自「jsp 应用开发技术光盘 是《jsp应用开发技术》这本书的源代码」· JSP 代码 · 共 24 行

JSP
24
字号
<%@page pageEncoding="GB2312"%><html><head><title>access bean properties</title></head><body bgcolor="#FFFFFF"><jsp:useBean id="emailer" class="examples.EmailBean"/><jsp:setProperty name="emailer" property="*" /><h2>访问 EmailBean 属性</h2><strong>SMTP host: </strong> ${emailer.smtpHost}<br /><strong>Email recipient: </strong> ${emailer.to}<br /><strong>Email sender: </strong> ${emailer["from"]}<br /><strong>Email subject: </strong> ${emailer.subject} <br /><strong>Email content: </strong> ${emailer.content} <br /></body></html>

⌨️ 快捷键说明

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