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

📄 message.jsp

📁 用jsp语言自己做的一个网站bookshot的全套程序以及一些样例。完全属于原创。
💻 JSP
字号:
<html>
  <head>
    <title>Messages of the Day</title>
  </head>
  <body bgcolor="white">
    <h1>Messages of the Day</h1>

    <jsp:useBean id="msg" 
      class="com.ora.jsp.beans.motd.MixedMessageBean" />

    <h2>Deep Thoughts - by Jack Handey</h2>

    <jsp:setProperty name="msg" property="category"
      value="thoughts" />

    <i>
      <jsp:getProperty name="msg" property="message" />
    </i>

    <h2>Quotes From the Famous and the Unknown</h2>

    <jsp:setProperty name="msg" property="category"
      value="quotes" />

    <i>
      <jsp:getProperty name="msg" property="message" />
    </i>

  </body>
</html>

⌨️ 快捷键说明

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