news文件夹包含的是新闻发布系统的源代码。新闻发布系统分为普通用户访问界面和管理员访问界面两部分。普通用户访问界面使用index.jsp页面进入
源代码在线查看: update.jsp
String editid="";
String title="";
String content="";
String author="";
String pubdate="";
request.setCharacterEncoding("gb2312");
if(request.getParameter("editid")!=null)
editid=request.getParameter("editid");
if(request.getParameter("title")!=null)
title=request.getParameter("title");
if(request.getParameter("content")!=null)
content=request.getParameter("content");
if(request.getParameter("author")!=null)
author=request.getParameter("author");
String sql="update news set title='"+title+"',content='"+content+"',author='"+author+"' where id="+editid;
conn.executeUpdate(sql);
conn.close();
response.sendRedirect("manage.jsp");
%>