站内搜索: 请输入搜索关键词

当前页面: 开发资料首页JSP 专题Oracle 和 JSP 开发的小型信息管理系统 (五) 源代码4

Oracle 和 JSP 开发的小型信息管理系统 (五) 源代码4

摘要: Oracle 和 JSP 开发的小型信息管理系统 (五) 源代码4
<textarea readonly style="border:none;font-family:Courier New;line-height:150%;width:760px;overflow-y:visible">

//edit.jsp,通过manage.jsp链接过来的修改信息页面

<%@ include file="articleconn.jsp"%>
<%
String id1=request.getParameter("id").trim();

session.setAttribute("id", id1);
int id=Integer.parseInt(id1);
String queryInfo=" select * from learning where article_id='"+id+"' ";
String updateHits=" update learning set hits=hits+1 where article_id='"+id+"' ";
boolean autoCommit=conn.getAutoCommit();

%>


<head>

修改信息
</textarea>


↑返回目录
前一篇: Oracle 和 JSP 开发的小型信息管理系统 (四) 源代码3
后一篇: Oracle 和 JSP 开发的小型信息管理系统 (三) 源代码2