前言:
这次带来的是模糊查询和include指令,本次重点是include指令。
模糊查询:
界面:
代码:
<form action="/s5/news/admin.jsp" method="post">
标题:<input type="text" name="title" />
<input type="submit" value="查询"/>
</form>
<ul class="classlist">
<%
//接收title
String title=request.getParameter("title");
if(title==null){
title="";//相当于查询全部
}
//破碎重组
title=new String(title.getBytes("iso-8859-1"),"utf-8");
//jdbc连接Oracle查询所有的新闻 : id 新闻标题 作者
String CNAME="oracle.jdbc.driver.OracleDriver";
String URL