- 浏览: 10724 次
最新评论
文章列表
这个是转发, 没有完成任务,继续携带资源
request.getRequestDispatcher("apage.jsp").forward(request, response);
这个是重定向,已经完成任务,可以轻松离开
response.sendRedirect("apage.jsp");
首先是oracle
select * from
(select rownum num,t.* from
(select empno,sal from emp order by sal) t)
where num between 6 and 10;
Mysql 的分页
select * from test_table limit 100,10 ;
点击返回事件
window.history.back(-1);
点击跳转事件
window.location.href="test.jsp" ;
点击选择事件
function check(){
if(confirm("你真的喜欢编程吗")){
alert("你是明智的");
}else{
alert("你完蛋了");
}
}
Struts的基本配置
- 博客分类:
- 框架类
这个是web.xml的基本配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
...
首先下面是一个简单的注册信息表单页面,很简单的HTML代码,也是我们需要录入元素的地方:
<form action="#" method="post" id="regist">
<table cellpadding="0" cellspacing="0" border="0" class="form_table">
<tr>
<td valign=" ...