1)跳转到另一个界面并刷新这个界面
2)跳转到另一个界面并刷新另一个界面
里面的哪个功能? 如果是第二个,那好办,直接使用JS,代码如下:
<input type="button" onclick="location.href='你所要指定的页面路径" value="提交" />
如果是第一个,那需要这样写:
<script type="text/javascript">
function jumpAndUpdate(pageName){
window.open(pageName)//打开新页面
window.location.reload()//重新加载本页面
}
</script>
<input type="button" onclick="jumpAndUpdate('check.jsp')" value="提交"/>
下面的代码即可实现(对数据库的 *** 作):
<%@ pagelanguage="java"
contentType="text/html charset=UTF-8"
pageEncoding="UTF-8"
%>
<%@page import="java.sql.*"%>
<center>
<H1> <font color="blue" size="12">管理中心</font></H1>
<HR />
<table width="80%" border="1">
<tr>
<th>ID</th>
<th>书名</th>
<th>作者</th>
<th>价格</th>
<th>删除</th>
</tr>
<%
// 数据库的名字
String dbName = "zap"
// 登录数据库的用户名
String username = "sa"
// 登录数据库的密码
String password = "123"
// 数据库的IP地址,本机可以用 localhost 或者 127.0.0.1
String host = "127.0.0.1"
// 数据库的端口,一般不会修改,默认为1433
int port = 1433
String connectionUrl = "jdbc:sqlserver://" + host + ":" + port + "databaseName=" + dbName + "user=" + username
+ "password=" + password
//
//声明需要使用的资源
// 数据库连接,记得用完了一定要关闭
Connection con = null
// Statement 记得用完了一定要关闭
Statement stmt = null
// 结果集,记得用完了一定要关闭
ResultSet rs = null
try {
// 注册驱动
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver")
// 获得一个数据库连接
con = DriverManager.getConnection(connectionUrl)
String SQL = "SELECT * from note"
// 创建查询
stmt = con.createStatement()
// 执行查询,拿到结果集
rs = stmt.executeQuery(SQL)
while (rs.next()) {
%>
<tr>
<td>
<%=rs.getInt(1)%>
</td>
<td>
<a href="prepareupdate?ID=<%=rs.getInt("ID")%>" target="_blank"><%=rs.getString(2)%></a>
</td>
<td>
<%=rs.getString(3)%>
</td>
<td>
<%=rs.getString(4)%>
</td>
<td>
<a href="delete?ID=<%=rs.getInt("ID")%>" target="_blank">删除</a>
</td>
</tr>
<%
}
} catch (Exception e) {
// 捕获并显示异常
e.printStackTrace()
} finally {
// 关闭我们使用过的资源
if (rs != null)
try {
rs.close()
} catch (Exception e) {}
if (stmt != null)
try {
stmt.close()
} catch (Exception e) {}
if (con != null)
try {
con.close()
} catch (Exception e) {}
}
%>
</table>
<a href="insert.jsp">添加新纪录</a>
</center>
MyJsp.jsp<body>
<form action="yanzheng.jsp" method="get">
用户名:<input type="text" name="username"/>
密码: <input type="password" name="password"/>
<input type="submit" value="登录" />
</form>
</body>
yangzheng.jsp
<body>
<%
String username = request.getParameter("username")
String pwd = request.getParameter("password")
if("baidu".equals(username) &&"123".equals(pwd)){
session.setAttribute("username",username)
request.getRequestDispatcher("success.jsp").forward(request,response)
}else{
request.getRequestDispatcher("error.jsp").forward(request,response)
}
%>
</body>
success.jsp
<body>
<%
Integer count = (Integer)application.getAttribute("count")
String username = (String)session.getAttribute("username")
if(count != null){
if(username != null &&username.equals("baidu")){
count++
application.setAttribute("count",count)
}
response.getWriter().print(application.getAttribute("count"))
}else{
count = 1
application.setAttribute("count",count)
response.getWriter().print(application.getAttribute("count"))
}
%>
</body>
error.jsp
<body>
Sorry,Is Error!!<br>
</body>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)