response.forward
request.include
response.sendRedirect
request.setAttribute
第1题:
A.server.transfer
B.responsE.redirect
C.mapping.findForward
D.responsE.sendRedirect
第2题:
在JSP页面中通过
第3题:
在J2EE中,在aa.jsp中有行代码:<%request.setAttribute("Co.","jb-aptech");%>在bb.jsp中有行代码:<%out.println((String)request.getAttribute("Co."));%>为了使得在bb.jsp中的如上代码可以显示jb-aptech”,可以使用()方法。
A.在aa.jsp中使用<formmethod=postaction="bb.jsp">把请求提交到bb.jsp
B.在aa.jsp中使用<jsp:forwardfile="bb.jsp"/>把页面重定向到bb.jsp
C.在aa.jsp中使用<%response.sendRedirect("bb.jsp");%>把页面重定向到bb.jsp
D.在aa.jsp中使用<%@includefile="bb.jsp"%>包含页面bb.jsp
E.在aa.jsp中使用<%config.getServletContext().getRequestDispatcher("/bb.jsp").forward(request,response);%>把页面重定向到bb.jsp
第4题:
在J2EE中,在aa.jsp中有行代码: <%><% request.setAttribute("Co.","jb-aptech"); %> 在bb.jsp中有行代码: <% out.println((String)request.getAttribute("Co.")); %> <%> 为了使得在bb.jsp中的如上代码可以显示“jb-aptech”,可以使用()方法。
第5题:
page指令的import属性的作用是()。
第6题:
下面哪种方法不能实现页面跳转的效果()
AResponse.Redirect方法
BServer.Transfer方法
CServer.Execute方法
DHTML.Encode方法
第7题:
在JSP页面编程中,页面跳转可以采用如下哪种方法实现?()
第8题:
6在jsp页面中如何传递对象?
request,session,application,cookie等
第9题:
在Struts中实现页面跳转主要通过什么方法来实现?()
第10题:
关于在网页中加入书签来实现跳转的说法,正确的是()。