changebook.jsp
来自「精通NetBeans光盘源代码,很好很好的资料」· JSP 代码 · 共 31 行
JSP
31 行
<%@page contentType="text/html"%><%@page pageEncoding="gb2312"%><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>更改图书信息</title> </head> <body><h4> <form action="BookShopServlet" method="post"> 要更改信息的图书编号:<input type="text" name="id"><hr> 请输入新内容:<br> 图书名称:<input type="text" name="name"><br> 图书价格:<input type="text" name="price"><br> <input type="hidden" value="change" name="action"> <input type="submit" value=" 更改 " > </form></h4> <a href="BookShopServlet?action=showall">查看商品信息</a> <% Object obj=session.getAttribute("change"); if(session.getAttribute("change")!=null){ if(((String)obj).equals("ok")){ out.println("<hr>更改成功"); }else{ out.println("<hr>更改失败"); } } session.setAttribute("change",null); %> </body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?