下列request和response内置对象的使用正确的是()A.request.getRequestDispatcher(“index.jsp”).forward();B.response.sendRedirect(“index.jsp”);C.request.getParameterValues(“name”);D.response.setContentType(“text/html;charset=gbk”);
举一反三
- equest. getRequestDispatcher("jsp1/index.jsp"). forward(request,response);表示获取请求转发对象,转向地址为jsp1/index.jsp。所获得的Request Dispatcher对象的forward()方法实现真正的跳转。
- 在JSP中,重定向到另一个页面,以下哪项是正确的() A: request . sendRedirect(“http://www.hncu.net”); B: request . sendRedirect(); C: response . sendRedirect(“http://www.hncu.net”); D: response .sendRedirect();
- ( )不是JSP的内置对象。 A: session B: cookie C: request D: response
- 下列属于JSP内置对象的是________。 A: request B: response C: session D: servletContext
- JSP内置对象中,请求对象指的是request,响应对象指的是response 。