<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*"%>
<% request.setCharacterEncoding("gb2312"); %> //设置字符集
<%@ page import="com.bwm.db.Condb"%> //导包
<%@ page import="com.bwm.string.Str"%> //导包
<html>
<body>
<%
Str str=new Str(); //定义一个String变量
Condb con=new Condb(); //连接数据库的bean
String temp=str.toChinese(request.getParameter("temp")); //从前一页
//面得到值,转为中文字符
String tem="select * from tb_Person where Uername='"+temp+"'"; //SQL
//语句
String sql="delete from tb_Person where Username='"+temp+"'";//SQL
//语句
int te=con.executeUpdate(sql); //与数据库建立连接后传入SQL语句,返回
//一个int 值
if(te<0){ //如果小于0,打印出下面的语句
out.println("数据库错误请与系统管理员联系");
}else{ //否则跳转到Uparticular.jsp。
response.sendRedirect("Uparticular.jsp");
}
con.close(); //关闭数据库连接
%>
3