下列选项不能用作response对象sendRedirect()方法的参数的是( )
A: "page1.jsp"
B: "/Exe/ page1.jsp "
C: "F:\Exe\page1.jsp "
D: "http://www.baidu.com"
A: "page1.jsp"
B: "/Exe/ page1.jsp "
C: "F:\Exe\page1.jsp "
D: "http://www.baidu.com"
举一反三
- 下列选项不能实现页面跳转的是( ) A: jsp:forward page="page1.jsp" B: C: % response.sendRedirect("page1.jsp");% D: % response.sendRedirect("http://www.baidu.com");%
- 下列选项不能实现页面跳转的是( ) A: <jsp:forward page="page1.jsp" /> B: <jsp:forward page="http://www.baidu.com" /> C: <% response.sendRedirect("page1.jsp");%> D: <% response.sendRedirect("http://www.baidu.com");%>
- JSP中作用域不是page的内置对象有哪些? A: request B: page C: response D: session
- JSP内置对象有:exception、pageContext、out、config、_____、page、response、request、_____。
- Your web application views all have the same header, which includes the <title> tag in the <head> elementof the rendered HTML. You have decided to remove this redundant HTML code from your JSPs and put itinto a single JSP called /WEB-INF/jsp/header.jsp. However, the title of each page is unique, so you havedecided to use a variable called pageTitle to parameterize this in the header JSP, like this: 10.<title>${param.pageTitle}<title> Which JSP code snippet should you use in your main view JSPs to insert the header and pass thepageTitle variable?() A: <jsp:insert page=’/WEB-INF/jsp/header.jsp’>. ${pageTitle=’Welcome Page’}. </jsp:insert> B: <jsp:include page=’/WEB-INF/jsp/header.jsp’>. ${pageTitle=’Welcome Page’}. </jsp:include> C: <jsp:include file=’/WEB-INF/jsp/header.jsp’>. ${pageTitle=’Welcome Page’}. </jsp:include> D: <jsp:insert page=’/WEB-INF/jsp/header.jsp’>. <jsp:param name=’pageTitle’ value=’Welcome Page’ /> . </jsp:insert> E: <jsp:include page=’/WEB-INF/jsp/header.jsp’>. <jsp:param name=’pageTitle’ value=’Welcome Page’ /> . </jsp:include>