⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 publish_pro.jsp

📁 简单的jsp留言本 配置JSP环境
💻 JSP
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -