两个网页使用同一个head,在点击“首页”后,head的“首页”变成绿色,点击“新闻”后,head的“新闻”变成绿色,head的“首页”恢复原来的颜色   head.jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <% String col = request.getParameter(&qu…
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub /* * 不带状态的跳转:response.sendRedirext("index.jsp") * 带状态的页面跳转:RequestDispatcher.forward(request…
一.前端传后台: 1.1表单数据的传递   前端的表单里定义名字name   后台通过名字获取输入的值         1.2页面点击了哪个按钮传递 登录注销的另一种方式   点击登录的地方设置参数   点击注销的地方设置参数     在servlet里判断 二.后台传前台: request/session/application/…… 后台放东西 protected void login(HttpServletRequest request, HttpServletResponse respo…
 实现提交表单以后判断输入的信息是否符合条件    若符合条件   先新建servlet  Sevlet的两种声明方式,二选一即可  再到web.xml里注册   register.jsp就是表单的界面 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" errorPage="error.jsp"%>…
1.首先在newlist界面增加三个图表,带上事件 newlist.jsp <%@ page language="java" contentType="text/html; charset=UTF-8" import="java.util.*,java.text.*,com.xx17.cys.entity.*" import="java.sql.*,org.apache.commons.dbcp2.*" import=&…
1.导包   2.找到sever里的sever.xml,配置静态数据库连接池 <Context docBase="bookstore" path="/bookstore" reloadable="true" source="org.eclipse.jst.jee.server:bookstore"> <Resource name="jdbc/bookstore" auth="Co…
整个界面为chat.jsp: 如果用户没有登录,就不能进行聊天. 为将发言的句子传到页面上,要设置一个<iframe></iframe>虚拟框架,将allmessage.jsp的内容转过来 而allmessage.jsp里的内容是通过application获取发言的内容.点击“发言”,会调用chat.do的servlet,  使用重定向可以将application传到allmessage.jsp chat.jsp <%@ page language="java&qu…
中文乱码真的很烦人的.而且每次都要写,可麻烦了,而且有时候写了还不一定管用,所以我们可以试试过滤器 1.每个jsp头上当然要写上utf8啦 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 2.然后添加一个过滤器 在过滤器的doFilter里写上 public void doFilter(ServletReque…
先展示效果:              导包:    在servlet的doget里创建session      在head里显示session     接下来进行注销的命令    点击注销链接到这个servlet  …
然后 index.jsp编辑   新建一个servlet             准备发布      发布…