在J2EE中,对于以下的include指令和include动作,书写正确的是()
第1题:
A、http://localhost:8080/hello.jsp
B、http://localhost:8080/helloapp/hello.jsp
C、http://localhost:8080/helloapp/hello/hello.jsp
D、http://localhost:8080/webapps/helloapp/hello/dello.jsp
第2题:
当在JSP文件中要使用到Vector对象时,应在JSP文件中加入以下哪个语句?()
第3题:
假设在helloapp应用中有一个hello.jsp,它的文件路径如下:TOMCAT_HOME%/webapps/helloapp/hello/hello.jsp那么在浏览器端访问hello.jsp的URL是什么?()
第4题:
在J2ee中,myWebApp目录是一个Web应用程序根目录,当在浏览器中输入http://localhost:8080/myWebApp/时,会自动打开该目录下的start.jsp文件。为了达到这个要求,需要在web.xml中添加如下代码()。
第5题:
在j2ee中,mywebapp目录是一个web应用程序根目录,当在浏览器中输入http://localhost:8080/mywebapp/时,会自动打开该目录下的start.jsp文家。为了达到这个要求,需要在web.xml中添加如下代码()
第6题:
Which JSP standard action can be used to import content from a resource called foo.jsp?()
第7题:
()可在JSP页面出现该指令的位置处,静态插入一个文件。
第8题:
〈jsp:include file=”java.util.*” /〉
〈jsp:include page=”java.util.*” /〉
〈%@ page import=”java.util.*” %〉
〈%@ page include=”java.util.*” %〉
第9题:
<welcome-file>start.jsp</welcome.-file>
<welcome-file-list> start.jsp </welcome.-file-list>
<welcome-file><welcome-file> start.jsp</welcome-file> </welcome.-file>
<welcome-file-list><welcome-file> start.jsp </welcome.-file></welcome-file-list>
第10题:
<%@ include file=”head.jsp”%>
<% String url=”head.jsp”;%><%@ include file=”url”%>
<%@ include file=”head.jsp”?name=”lovo”%>
<%String companyName=”lovo”;%>%@include file”head.jsp”?name=‟companyName”%
第11题:
<welcome-file>start.jsp</welcome-file>
<welcome-file-list>start.jsp</welcome-file-list>
<welcome-list> <welcome-file>start.jsp</welcome-file> </welcome-list>
<welcome-file-list> <welcome-file>start.jsp</welcome-file> </welcome-file-list>
第12题:
http://localhost:8080/hello.jsp
http://localhost:8080/helloapp/hello.jsp
http://localhost:8080/helloapp/hello/hello.jsp
第13题:
在当前页面中包含a.htm的正确语句是()
第14题:
JSP中包括2种指令:page指令和include指令。
第15题:
在J2EE 中,myWebApp目录是一个Web应用程序根目录,当在浏览器中输入http://localhost:8080/myWebApp/时,会自动打开 该目录下的start.jsp文件。为了达到这个要求,需要在web.xml中添加如下代码()。
第16题:
下列语句正确的有()
第17题:
Every page of your web site must include a common set of navigation menus at the top of the page. Thismenu is static HTML and changes frequently,so you have decided to use JSP’s static import mechanism. Which JSP code snippet accomplishes this goal?()
第18题:
AMS客户端下载到PC上,路径正确的是
第19题:
JSP的编译指令标记通常是指()。
第20题:
<welcome-file-list>start.jsp<welcome-file-list>
<welcome-list><welcome-file>start.jsp</welcome-file></welcome-list>
<welcome-file-list><welcome-file>start.jsp</welcome-file></welcome-file-list>
第21题:
<%@ include=”a.htm”%>
<jsp:include file=”a.htm”/>
<%@ include page=”a.htm”%>
<%@ include file=”a.htm”%>
第22题:
<jsp:import file=’foo.jsp’ />
<jsp:import page=’foo.jsp’ />
<jsp:include page=’foo.jsp’ />
<jsp:include file=’foo.jsp’ />
第23题:
<jsp:include page=http://localhost:/8080/my.jsp/>
<%@ include file=http://localhost:/8080/my.jsp/>
<jsp:include file=http://localhost:/8080/my.jsp/>
<%@ include page=http://localhost:/8080/my.jsp/>