📄 _insertinfo.java
字号:
import oracle.jsp.runtime.*;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import oracle.jsp.el.*;
import javax.servlet.jsp.el.*;
public class _InsertInfo extends com.orionserver.http.OrionHttpJspPage {
// ** Begin Declarations
// ** End Declarations
public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException {
response.setContentType( "text/html;charset=GBK");
/* set up the intrinsic variables using the pageContext goober:
** session = HttpSession
** application = ServletContext
** out = JspWriter
** page = this
** config = ServletConfig
** all session/app beans declared in globals.jsa
*/
PageContext pageContext = JspFactory.getDefaultFactory().getPageContext( this, request, response, null, true, JspWriter.DEFAULT_BUFFER, true);
// Note: this is not emitted if the session directive == false
HttpSession session = pageContext.getSession();
int __jsp_tag_starteval;
ServletContext application = pageContext.getServletContext();
JspWriter out = pageContext.getOut();
_InsertInfo page = this;
ServletConfig config = pageContext.getServletConfig();
javax.servlet.jsp.el.VariableResolver __ojsp_varRes = (VariableResolver)new OracleVariableResolverImpl(pageContext);
try {
out.write(__oracle_jsp_text[0]);
out.write(__oracle_jsp_text[1]);
}
catch (Throwable e) {
if (!(e instanceof javax.servlet.jsp.SkipPageException)){
try {
if (out != null) out.clear();
}
catch (Exception clearException) {
}
pageContext.handlePageException(e);
}
}
finally {
OracleJspRuntime.extraHandlePCFinally(pageContext, true);
JspFactory.getDefaultFactory().releasePageContext(pageContext);
}
}
private static final char __oracle_jsp_text[][]=new char[2][];
static {
try {
__oracle_jsp_text[0] =
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n\"http://www.w3.org/TR/html4/loose.dtd\">\n".toCharArray();
__oracle_jsp_text[1] =
"\n<html>\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=GBK\"/>\n <title>InsertInfo</title>\n </head>\n <body>\n <form action=\"insertservlet\" method=\"post\">\n <table cellspacing=\"3\" cellpadding=\"2\" border=\"1\" width=\"100%\">\n <tr>\n <td>图书编码</td>\n <td><input type=\"text\" name=\"bookNum\"></td>\n </tr>\n <tr>\n <td>图书名称</td>\n <td><input type=\"text\" name=\"bookName\"></td>\n </tr>\n <tr>\n <td>作者编码:</td>\n <td><input type=\"text\" name=\"authorNum\"></td>\n </tr>\n <tr>\n <td>出版社:</td>\n <td><input type=\"text\" name=\"press\"></td>\n </tr>\n <tr>\n <td>作者姓名:</td>\n <td><input type=\"text\" name=\"authorName\"></td>\n </tr>\n <tr>\n <td>地址:</td>\n <td><input type=\"text\" name=\"address\"></td>\n </tr>\n <tr>\n <td>EMAIL:</td>\n <td><input type=\"text\" name=\"email\"><br></td>\n </tr>\n <tr>\n <td>电话:</td>\n <td><input type=\"text\" name=\"tel\"></td>\n </tr>\n <tr>\n <td><input type=\"reset\" value=\"重置\"></td>\n <td><input type=\"submit\" value=\"提交\"></td>\n </tr>\n </table>\n </form>\n </body>\n</html>".toCharArray();
}
catch (Throwable th) {
System.err.println(th);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -