publish_pro.jsp
来自「配置JSP环境」· JSP 代码 · 共 24 行
JSP
24 行
<%@ page contentType="text/html; charset=gb2312" import="java.sql.*" %>
<%@ page errorPage="index_error.jsp" %>
<jsp:useBean id="db" scope="request" class="com.msg.db.DBConnect">
</jsp:useBean>
<html>
<head>
<title>
publish_pro
</title>
</head>
<body bgcolor="#ffffff">
<%
Connection conn=db.getConn();
Statement stmt=conn.createStatement();
String news=new String(request.getParameter("news").getBytes("ISO-8859-1"));
String condition="update system set news='"+news+"'";
stmt.executeUpdate(condition);
stmt.close();
conn.close();
response.sendRedirect("index.jsp");
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?