📄 bookmaint_jsp.java
字号:
String requiredParams = "";
String primaryKeyParams ="";
java.util.Hashtable rsHash = new java.util.Hashtable();
String pitem_id = "";
String fldcategory_id="";
String flditem_id="";
String fldname="";
String fldauthor="";
String fldprice="";
String fldproduct_url="";
String fldimage_url="";
String fldnotes="";
String fldis_recommended="";
boolean bPK = true;
if ( "".equals(sBookErr)) {
// Load primary key and form parameters
fldcategory_id = getParam( request, "category_id");
flditem_id = getParam( request, "item_id");
transitParamsHidden += "<input type=\"hidden\" name=\"Trn_category_id\" value=\""+getParam( request, "category_id")+"\">";
transitParams += "Trn_category_id="+getParam( request, "category_id")+"&";
pitem_id = getParam( request, "item_id");
}
else {
// Load primary key, form parameters and form fields
flditem_id = getParam( request, "item_id");
fldname = getParam( request, "name");
fldauthor = getParam( request, "author");
fldcategory_id = getParam( request, "category_id");
fldprice = getParam( request, "price");
fldproduct_url = getParam( request, "product_url");
fldimage_url = getParam( request, "image_url");
fldnotes = getParam( request, "notes");
fldis_recommended = getParam( request, "is_recommended");
transitParamsHidden += "<input type=\"hidden\" name=\"Trn_category_id\" value=\""+getParam( request, "Trn_category_id")+"\">";
transitParams += "Trn_category_id="+getParam( request, "Trn_category_id")+"&";
pitem_id = getParam( request, "PK_item_id");
}
if ( isEmpty(pitem_id)) { bPK = false; }
sWhere += "item_id=" + toSQL(pitem_id, adNumber);
primaryKeyParams += "<input type=\"hidden\" name=\"PK_item_id\" value=\""+pitem_id+"\"/>";
sSQL = "select * from items where " + sWhere;
out.println(" <table style=\"\">");
out.println(" <tr>\n <td style=\"background-color: #336699; text-align: Center; border-style: outset; border-width: 1\" colspan=\"2\"><font style=\"font-size: 12pt; color: #FFFFFF; font-weight: bold\">书籍</font></td>\n </tr>");
if ( ! sBookErr.equals("")) {
out.println(" <tr>\n <td style=\"background-color: #FFFFFF; border-width: 1\" colspan=\"2\"><font style=\"font-size: 10pt; color: #000000\">"+sBookErr+"</font></td>\n </tr>");
}
sBookErr="";
out.println(" <form method=\"get\" action=\""+sFileName+"\" name=\"Book\">");
java.sql.ResultSet rs = null;
if ( bPK && ! (sAction.equals("insert") && "Book".equals(sForm))) {
// Open recordset
rs = openrs( stat, sSQL);
rs.next();
String[] aFields = getFieldsName( rs );
getRecordToHash( rs, rsHash, aFields );
rs.close();
flditem_id = (String) rsHash.get("item_id");
if ( "".equals(sBookErr)) {
// Load data from recordset when form displayed first time
fldname = (String) rsHash.get("name");
fldauthor = (String) rsHash.get("author");
fldcategory_id = (String) rsHash.get("category_id");
fldprice = (String) rsHash.get("price");
fldproduct_url = (String) rsHash.get("product_url");
fldimage_url = (String) rsHash.get("image_url");
fldnotes = (String) rsHash.get("notes");
fldis_recommended = (String) rsHash.get("is_recommended");
}
if (sAction.equals("") || ! "Book".equals(sForm)) {
flditem_id = (String) rsHash.get("item_id");
fldname = (String) rsHash.get("name");
fldauthor = (String) rsHash.get("author");
fldcategory_id = (String) rsHash.get("category_id");
fldprice = (String) rsHash.get("price");
fldproduct_url = (String) rsHash.get("product_url");
fldimage_url = (String) rsHash.get("image_url");
fldnotes = (String) rsHash.get("notes");
fldis_recommended = (String) rsHash.get("is_recommended");
}
}
else {
if ( "".equals(sBookErr)) {
flditem_id = toHTML(getParam(request,"item_id"));
fldcategory_id = toHTML(getParam(request,"category_id"));
fldis_recommended= "0";
}
}
// Show form field
out.print(" <tr>\n <td style=\"background-color: #FFEAC5; border-style: inset; border-width: 0\"><font style=\"font-size: 10pt; color: #000000\">书名</font></td><td style=\"background-color: #FFFFFF; border-width: 1\">"); out.print("<input type=\"text\" name=\"name\" maxlength=\"100\" value=\""+toHTML(fldname)+"\" size=\"30\">");
out.println("</td>\n </tr>");
out.print(" <tr>\n <td style=\"background-color: #FFEAC5; border-style: inset; border-width: 0\"><font style=\"font-size: 10pt; color: #000000\">作者</font></td><td style=\"background-color: #FFFFFF; border-width: 1\">"); out.print("<input type=\"text\" name=\"author\" maxlength=\"100\" value=\""+toHTML(fldauthor)+"\" size=\"30\">");
out.println("</td>\n </tr>");
out.print(" <tr>\n <td style=\"background-color: #FFEAC5; border-style: inset; border-width: 0\"><font style=\"font-size: 10pt; color: #000000\">类别</font></td><td style=\"background-color: #FFFFFF; border-width: 1\">");
out.print("<select name=\"category_id\">"+getOptions( conn, "select category_id, name from categories order by 2",false,true,fldcategory_id)+"</select>");
out.println("</td>\n </tr>");
out.print(" <tr>\n <td style=\"background-color: #FFEAC5; border-style: inset; border-width: 0\"><font style=\"font-size: 10pt; color: #000000\">价格</font></td><td style=\"background-color: #FFFFFF; border-width: 1\">"); out.print("<input type=\"text\" name=\"price\" maxlength=\"10\" value=\""+toHTML(fldprice)+"\" size=\"10\">");
out.println("</td>\n </tr>");
out.print(" <tr>\n <td style=\"background-color: #FFEAC5; border-style: inset; border-width: 0\"><font style=\"font-size: 10pt; color: #000000\">产品链接</font></td><td style=\"background-color: #FFFFFF; border-width: 1\">"); out.print("<input type=\"text\" name=\"product_url\" maxlength=\"100\" value=\""+toHTML(fldproduct_url)+"\" size=\"40\">");
out.println("</td>\n </tr>");
out.print(" <tr>\n <td style=\"background-color: #FFEAC5; border-style: inset; border-width: 0\"><font style=\"font-size: 10pt; color: #000000\">Image URL</font></td><td style=\"background-color: #FFFFFF; border-width: 1\">"); out.print("<input type=\"text\" name=\"image_url\" maxlength=\"100\" value=\""+toHTML(fldimage_url)+"\" size=\"40\">");
out.println("</td>\n </tr>");
out.print(" <tr>\n <td style=\"background-color: #FFEAC5; border-style: inset; border-width: 0\"><font style=\"font-size: 10pt; color: #000000\">备注</font></td><td style=\"background-color: #FFFFFF; border-width: 1\">"); out.print("<textarea name=\"notes\" cols=\"60\" rows=\"8\">"+toHTML(fldnotes)+"</textarea>");
out.println("</td>\n </tr>");
out.print(" <tr>\n <td style=\"background-color: #FFEAC5; border-style: inset; border-width: 0\"><font style=\"font-size: 10pt; color: #000000\">推荐</font></td><td style=\"background-color: #FFFFFF; border-width: 1\">");
if ( fldis_recommended.equalsIgnoreCase("1") ) {
out.print("<input checked type=\"checkbox\" name=\"is_recommended\" value=\"1\">");
}
else {
out.print("<input type=\"checkbox\" name=\"is_recommended\" value=\"1\">");
}
out.println("</td>\n </tr>");
out.print(" <tr>\n <td colspan=\"2\" align=\"right\">");
if ( bPK && ! (sAction.equals("insert") && "Book".equals(sForm))) {
out.print("<input type=\"submit\" value=\"修改\" onclick=\"document.Book.FormAction.value = 'update';\">");out.print("<input type=\"submit\" value=\"删除\" onclick=\"document.Book.FormAction.value = 'delete';\">");out.print("<input type=\"submit\" value=\"取消\" onclick=\"document.Book.FormAction.value = 'cancel';\">");
out.print("<input type=\"hidden\" name=\"FormName\" value=\"书籍\"><input type=\"hidden\" value=\"update\" name=\"FormAction\">");
}
else {
out.print("<input type=\"submit\" value=\"添加\" onclick=\"document.Book.FormAction.value = 'insert';\">");out.print("<input type=\"submit\" value=\"取消\" onclick=\"document.Book.FormAction.value = 'cancel';\">");
out.print("<input type=\"hidden\" name=\"FormName\" value=\"书籍\"><input type=\"hidden\" value=\"insert\" name=\"FormAction\">");
}out.print("<input type=\"hidden\" name=\"item_id\" value=\""+toHTML(flditem_id)+"\">");
out.print(transitParamsHidden+requiredParams+primaryKeyParams);
out.println("</td>\n </tr>\n </form>\n </table>");
}
catch (Exception e) { out.println(e.toString()); }
}
private static java.util.Vector _jspx_dependants;
static {
_jspx_dependants = new java.util.Vector(1);
_jspx_dependants.add("/pages/Common.jsp");
}
public java.util.List getDependants() {
return _jspx_dependants;
}
public void _jspService(HttpServletRequest request, HttpServletResponse response)
throws java.io.IOException, ServletException {
JspFactory _jspxFactory = null;
PageContext pageContext = null;
HttpSession session = null;
ServletContext application = null;
ServletConfig config = null;
JspWriter out = null;
Object page = this;
JspWriter _jspx_out = null;
PageContext _jspx_page_context = null;
try {
_jspxFactory = JspFactory.getDefaultFactory();
response.setContentType("text/html;charset=gb2312");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
out.write('\r');
out.write('\n');
String cSec = checkSecurity(2, session, response, request);
if ("sendRedirect".equals(cSec) ) return;
boolean bDebug = false;
String sAction = getParam( request, "FormAction");
String sForm = getParam( request, "FormName");
String sBookErr = "";
java.sql.Connection conn = null;
java.sql.Statement stat = null;
String sErr = loadDriver();
conn = cn();
stat = conn.createStatement();
if ( ! sErr.equals("") ) {
try {
out.println(sErr);
}
catch (Exception e) {}
}
if ( sForm.equals("Book") ) {
sBookErr = BookAction(request, response, session, out, sAction, sForm, conn, stat);
if ( "sendRedirect".equals(sBookErr)) return;
}
out.write(" \r\n");
out.write("<html>\r\n");
out.write("<head>\r\n");
out.write("<title>Book Store</title>\r\n");
out.write("<meta name=\"GENERATOR\" content=\"YesSoftware CodeCharge v.1.2.0 / JSP.ccp build 05/21/2001\"/>\r\n");
out.write("<meta http-equiv=\"pragma\" content=\"no-cache\"/>\r\n");
out.write("<meta http-equiv=\"expires\" content=\"0\"/>\r\n");
out.write("<meta http-equiv=\"cache-control\" content=\"no-cache\"/>\r\n");
out.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">\r\n");
out.write("</head>\r\n");
out.write("<body style=\"background-color: #FFFFFF; color: #000000; font-family: Arial, Tahoma, Verdana, Helveticabackground-color: #FFFFFF; color: #000000; font-family: Arial, Tahoma, Verdana, Helvetica\">\r\n");
org.apache.jasper.runtime.JspRuntimeLibrary.include(request, response, "Header.jsp", out, true);
out.write("\r\n");
out.write(" <table>\r\n");
out.write(" <tr>\r\n");
out.write(" \r\n");
out.write(" <td valign=\"top\">\r\n");
Book_Show(request, response, session, out, sBookErr, sForm, sAction, conn, stat);
out.write("\r\n");
out.write(" <SCRIPT Language=\"JavaScript\">\r\n");
out.write("if (document.forms[\"Book\"])\r\n");
out.write("document.Book.onsubmit=delconf;\r\n");
out.write("function delconf() {\r\n");
out.write("if (document.Book.FormAction.value == 'delete')\r\n");
out.write(" return confirm('Delete record?');\r\n");
out.write("}\r\n");
out.write("</SCRIPT>\r\n");
out.write(" </td>\r\n");
out.write(" </tr>\r\n");
out.write(" </table>\r\n");
out.write("\r\n");
org.apache.jasper.runtime.JspRuntimeLibrary.include(request, response, "Footer.jsp", out, true);
out.write("\r\n");
out.write("</body>\r\n");
out.write("</html>\r\n");
out.write('\r');
out.write('\n');
if ( stat != null ) stat.close();
if ( conn != null ) conn.close();
out.write('\r');
out.write('\n');
} catch (Throwable t) {
if (!(t instanceof SkipPageException)){
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
out.clearBuffer();
if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
}
} finally {
if (_jspxFactory != null) _jspxFactory.releasePageContext(_jspx_page_context);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -