readconceptstr.jsp

来自「<Java网络程序设计 J2EE>随书源码」· JSP 代码 · 共 41 行

JSP
41
字号
<%@page contentType="text/plain"%><%@page import = "org.impact.stars.conceptmd.conceptstr.model.ConceptstrModel"%><jsp:useBean  id="Conceptstr"  class="org.impact.stars.control.web.ConceptstrWebImpl"  scope="application"/><p> Conceptstrs in the Database </p>  <p>  <table border="0">    <tr>      <td>        Concept str      </td>    </tr><%		String projectID = null;				projectID = request.getParameter("projectID");	                Conceptstr.setConceptstrID("1");                Conceptstr.performUpdate(); %>    <tr>      <td>ConcptID</td>      <td>        <%= Conceptstr.getConceptstrID() %>      </td>      <td>Name</td>      <td>        <%= Conceptstr.getName() %>      </td>      <td>Descriptioin</td>      <td>        <%= Conceptstr.getDescription() %>      </td>    </tr></table>

⌨️ 快捷键说明

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