NetBeans IDE 6.8/6.9教程-使用MySQL数据库创建简单的Web应用程序 - 编程入门网
sultset 中的值。但是,<c:forEach> 标记的操作方式 是通过为查询中包含的行设置变量,从而使您可以通过在 EL 语句中包含行变量来提取值。
将 JSTL core 库的 taglib 指令添加到文件顶部,以便可以识别 <c:set> 标记。(新内容以 粗体显示。) <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"% > NetBeans IDE 6.8/6.9教程-使用MySQL数据库创建简单的Web应用程序(18)时间:2011-08-02 netbeans.org Troy Giunipero在 HTML 标记中,将所有占位符替换为 EL 语句代码,该代码显示 counselorDetails 变量中保存的 数据。(所做的更改在下面以粗体显示): <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF- 8"/> <link rel="stylesheet" type="text/css" href="style.css"> <title>${counselorDetails.name}</title> </head> <body> <table> <tr> <th colspan="2">${counselorDetails.name} </th> </tr> <tr> <td><strong>Description: </strong></td> <td><span style="font-size:smaller; font- style:italic;">${counselorDetails.description} </span></td> </tr> <tr> <td><strong>Counselor: </strong></td> <td><strong>${counselorDetails.first_name} ${counselorDetails.nick_name} ${counselorDetails.last_name}</strong> <br><span style="font-size:smaller; font- style:italic;"> <em>member since: ${counselorDetails.member_since} </em></span></td> </tr> <tr> <td><strong>Contact Details: </strong></td> <td><strong>email: </strong> <a href="mailto:${counselorDetails.email} ">${counselorDetails.email}</a> <br><strong>phone: </strong>${counselorDetails.telephone}</td> </tr> </table> </body> </html> NetBeans IDE 6.8/6.9教程-使用MySQL数据库创建简单的Web应用程序(19)时间:2011-08-02 netbeans.org Troy Giunipero运行完成的应用程序 现在,您已完成该应用程序。可以尝试再次运行它以查看其在浏览器中的显示 方式。请注意,由于 NetBeans 具备“在保存时编译”功能,因此您无需担心编译或重新部署应用程序的 问题。运行项目时,您可以确保部署包含您的最新更改。 单击主工具栏中的“运行项目”() 按 钮。在 IDE 的缺省浏览器中打开 index.jsp 页。 当 index.jsp 显示在浏览器中时,从下拉列表中选择一个主题,然后单击 submit。应会立即转至 response.jsp 页,其中显示了与您的选择相对应的详细信 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |