网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

Which the JSTL code snippet can be used to import content from another web resource?()

  • A、 <c:import url=*foo.jsp”/> 
  • B、 <c:import page=*foo.jsp”/> 
  • C、 <c:include url=*foo.jsp”/> 
  • D、 <c:include page=*foo.jsp”/> 
  • E、 Importing cannot be done in JSTL. A standard action must be used instead.

参考答案

更多 “Which the JSTL code snippet can be used to import content from another web resource?()A、 c:import url=*foo.jsp”/ B、 c:import page=*foo.jsp”/ C、 c:include url=*foo.jsp”/ D、 c:include page=*foo.jsp”/ E、 Importing cannot be done in JSTL. A standard action must be used instead.” 相关考题
考题 下列JSTL中迭代标签说法错误() A、JSTL中迭代标签有:c:forEach和c:forTokenB、c:forEach标签可以迭代固定次数C、c:forEach标签可以在Collection中迭代D、c:forTokens标签仅可以指定一个分隔符

考题 在JSTL的迭代标签的属性中,用于指定要遍历的对象集合的是( )A、varB、itemsC、valueD、varStatus

考题 JSP标准标签库(JSTL)包含用于编写和开发JSP页面的一组标准标签,按照标签的功能不同,将标签划分为_____和_____两个标签库( )a.通用标签库 b. 条件标签库 c. 核心标签库 d. SQL标签库A、adB、bcC、acD、bd

考题 下列对于JSTL的说法正确的是()。A、JSTL是指(JavaServer Pages Standard Tag Library,JSP)标准标记库B、JSTL特别为条件处理、迭代、国际化、数据库访问和可扩展标记语言(XML)处理提供支持C、JSTL在应用程序服务器之间提供了一致的接口,最大程序地提高了WEB应用在各应用服务器之间的移植。D、JSTL简化了JSP和WEB应用程序的开发。E、JSTL以一种统一的方式减少了JSP中的scriptlet代码数量

考题 以下关于EL和JSTL说法错误的是()?A、EL是一种简洁的数据访问语言B、EL表达式基本形式:${var}C、JSTL的全称是JavaServer Pages Standard Tag LibraryD、JSTL只有一个Core核心标签库

考题 JSP标准标签库(JSTL)的标签库描述符文件的后缀是()A、.tldB、.jarC、.jspD、.class

考题 JSTL标签语句中,假设a为collection,b为数组,c为b中第一个元素。下列访问c的语句哪句正确()A、${a.b.c}B、${a.b[0].c}C、${a}.${b}.${c}D、${a}.${b[0]}.${c}

考题 在JSP页面上使用JSTL标签时,应使用JSP指令()导入标签库描述符文件。A、 pageB、 taglibC、 tagD、 lib

考题 要使用JSTL的核心标签库,需要在JSP源文件的首部加入如下什么声明语句?()A、〈%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %〉B、〈%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %〉C、〈%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %〉D、〈%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %〉

考题 以下有关JSTL的说法不正确的是()。A、JSTL就是一个JSP标签库B、核心标签库为日常任务提供通用支持C、国际化标签库支持多语种的应用程序D、函数标签库提供了许多用于XML处理的标准EL函数

考题 Which JSTL code snippet can be used to perform URL rewriting?()A、a href=’c:url url="foo.jsp"/’ /B、a href=’c:link url="foo.jsp"/’ /C、a href=’c:url value="foo.jsp"/’ /D、a href=’c:link value="foo.jsp"/’ /

考题 下面有关struts1和struts2的区别,描述错误的是()。A、Struts1要求Action类继承一个抽象基类。Struts 2 Action类可以实现一个Action接口B、Struts1 Action对象为每一个请求产生一个实例。Struts2 Action是单例模式并且必须是线程安全的C、Struts1 Action 依赖于Servlet API,Struts 2 Action不依赖于容器,允许Action脱离容器单独被测试D、Struts1 整合了JSTL,Struts2可以使用JSTL,但是也支持OGNL

考题 Which the two JSTL URL-related tags perform URL rewriting?()A、 urlB、 linkC、 paramD、 importE、 redirect

考题 单选题要使用JSTL的核心标签库,需要在JSP源文件的首部加入如下什么声明语句?()A 〈%@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core %〉B 〈%@ taglib prefix=x uri=http://java.sun.com/jsp/jstl/xml %〉C 〈%@ taglib prefix=fmt uri=http://java.sun.com/jsp/jstl/fmt %〉D 〈%@ taglib prefix=sql uri=http://java.sun.com/jsp/jstl/sql %〉

考题 多选题JSP标准标签库(JSTL)包含用于编写和开发JSP页面的一组标准标签,按照标签的功能不同,将标签划分为()两个标签库。A通用标签库B条件标签库C核心标签库DSQL标签库

考题 单选题在JSTL的迭代标签c:foreach的属性中,用于指定要便利的对象的集合的是()A varB itemsC varStatusD value

考题 单选题The temperature () a liquid changes its state from liquid to gas depends upon the liquid itself and upon the pressure () it is subjected in the containing vessel.A at which/to whichB from which/at whichC to which/from whichD in which/on which

考题 单选题在JSP页面上使用JSTL标签时,应使用JSP指令()导入标签库描述符文件。A  pageB  taglibC  tagD  lib

考题 单选题Which JSTL code snippet can be used to import content from another web resource?()A c:import url=foo.jsp/B c:import page=foo.jsp/C c:include url=foo.jsp/D c:include page=foo.jsp/

考题 多选题Which the two are true about the JSTL core iteration custom tags?()AIt may iterate over arrays, collections, maps and strings.BThe body of the tag may contain EL code, but not scripting code.CWhen looping over collections, a loop status object may be used in the tag body.DIt may iterate over a map, but only the key of the mapping may be used in the tag body.EWhen looping over integers (for example begin1=’1’ end=’10’), a loop status object may not be used in the tag body.

考题 多选题Which two JSTL URL-related tags perform URL rewriting?()AUrlBLinkCParamDImportERedirect

考题 单选题JSTL标签语句中,假设a为collection,b为数组,c为b中第一个元素。下列访问c的语句哪句正确()A ${a.b.c}B ${a.b[0].c}C ${a}.${b}.${c}D ${a}.${b[0]}.${c}

考题 单选题Which JSTL code snippet can be used to perform URL rewriting?()A a href=’c:url url=foo.jsp/’ /B a href=’c:link url=foo.jsp/’ /C a href=’c:url value=foo.jsp/’ /D a href=’c:link value=foo.jsp/’ /

考题 单选题Which the JSTL code snippet can be used to import content from another web resource?()A  c:import url=*foo.jsp”/ B  c:import page=*foo.jsp”/ C  c:include url=*foo.jsp”/ D  c:include page=*foo.jsp”/ E  Importing cannot be done in JSTL. A standard action must be used instead.

考题 单选题以下关于EL和JSTL说法错误的是()?A EL是一种简洁的数据访问语言B EL表达式基本形式:${var}C JSTL的全称是JavaServer Pages Standard Tag LibraryD JSTL只有一个Core核心标签库

考题 多选题You have been contracted to create a web site for a free dating service. One feature is the ability for oneclient to send a message to another client, which is displayed in the latter client’s private page. Your contract explicitly states that security is a high priority. Therefore, you need to prevent cross-site hacking inwhich one user inserts JavaScript code that is then rendered and invoked when another user views thatcontent. Which two JSTL code snippets will prevent cross site hacking in the scenario above? ()Ac:out${message}/c:outBc:out value=’${message}’ /Cc:out value=’${message}’ escapeXml=’true’ /Dc:out eliminateXml=’true’${message}/c:outEc:out value=’${message}’ eliminateXml=’true’ /

考题 单选题以下有关JSTL的说法不正确的是()。A JSTL就是一个JSP标签库B 核心标签库为日常任务提供通用支持C 国际化标签库支持多语种的应用程序D 函数标签库提供了许多用于XML处理的标准EL函数