41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=GB18030"
|
|
pageEncoding="GB18030" import="java.sql.*"%>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<jsp:useBean id="reg" class="com.DB" scope="page" />
|
|
<jsp:useBean id="times" class="com.Shijian" scope="page" />
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
|
|
<title>Insert title here</title>
|
|
</head>
|
|
<body>
|
|
<%
|
|
try {
|
|
String Gg_titile=new String(request.getParameter("Gg_titile").getBytes("ISO-8859-1"),"GB18030");
|
|
String Gg_neirong=new String(request.getParameter("Gg_neirong").getBytes("ISO-8859-1"),"GB18030");
|
|
|
|
|
|
Connection con=reg.getCon();
|
|
String sqlt="select * from gg where Gg_titile='"+Gg_titile+"'";
|
|
ResultSet rs=reg.GetRs(sqlt);
|
|
|
|
if(rs.next()){
|
|
out.println("<script lanage='javascript'>alert('公告标题已被占用');javascript:history.go(-1);</script>");
|
|
}
|
|
else
|
|
{
|
|
// 添加信息的SQL语句
|
|
String sql = "insert into gg(Gg_titile,Gg_neirong,shijian) values('"+Gg_titile+"','"+Gg_neirong+"','"+times.showTodayTime()+"')";
|
|
int row = reg.GetCount(sql);
|
|
|
|
if(row > 0){
|
|
out.println("<script>alert('添加成功!');window.location.href='zixun_add.jsp';</script>");
|
|
}
|
|
con.close();}
|
|
} catch (Exception e) {
|
|
out.print("添加失败!");
|
|
e.printStackTrace();
|
|
}
|
|
%>
|
|
</body>
|
|
</html> |