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

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

简述JSP开发Web站点的主要方式。


参考答案和解析
答: JSP 开发 Web 站点的主要方式有: ( 1 )直接使用 JSP ( 2 ) JSP+JavaBean ( 3 ) JSP+JavaBean+Servlet ( 4 ) J2EE/JavaEE 开发模型 ( 5 ) SSH 开发框架
更多 “简述JSP开发Web站点的主要方式。” 相关考题
考题 下列关于 Windows 2003 系统 Web 服务器安装、配置和使用的描述中,错误的是A ) 建立 Web 站点时必须为该站点指定一个主目录B ) 访问 Web 站点时必须使用站点的域名C ) 若 Web 站点未设置默认内容文档,访问站点时必须提供首页内容的文件名D ) Web 站点的性能选项包括影响带宽使用的属性和客户端 Web 连接的数量

考题 下列Web站点与浏览器安全交互的叙述中,不正确的是( )。A.Web站点验证客户身份,要求浏览器中安装客户证书B.浏览器验证Web站点身份,要求Web站点也要安装站点证书C.Web站点和浏览器用公钥加密和解密,实现加密传输D.Web站点与浏览器之间信息的加密传输

考题 IIS的主要功能是( )。A.网络通信服务B.制作网页C.Web站点管理D.开发软件

考题 下列关于JSP说法中不正确的是()。 A、JSP是IBM公司推出的新一代站点开发语言B、JSP解决了目前ASP、PHP的一个通病——脚本级执行C、JSP将内容的生成和显示进行分离D、JSP强调可重用的组件

考题 以下选项中()不是开发JSP应用程序所必需的。A、JDKB、J2EESDKC、web服务器D、开发工具Eclipse

考题 Youarebuildingyourownlayoutmechanismbyincludingdynamiccontentforthepage’sheaderandfootersections.Thefooterisalwaysstatic,buttheheadergeneratesthetitletagthatrequiresthepagenametobespecifieddynamicallywhentheheaderisimported.WhichJSPcodesnippetperformstheimportoftheheadercontent?()A.jsp:includepage=’/WEB-INF/jsp/header.jsp’jsp:paramname=’pageName’value=’WelcomePage’//jsp:includeB.jsp:importpage=’/WEB-INF/jsp/header.jsp’jsp:paramname=’pageName’value=’WelcomePage’//jsp:importC.jsp:includepage=’/WEB-INF/jsp/header.jsp’jsp:attributename=’pageName’value=’WelcomePage’/./jsp:includeD.jsp:importpage=’/WEB-INF/jsp/header.jsp’.jsp:attributename=’pageName’value=’WelcomePage’/./jsp:import

考题 YouarebuildingJSPpagesthathaveasetofmenusthatarevisiblebasedonauser’ssecurityrole.Thesemenusarehand-craftedbyyourwebdesignteam;forexample,theSalesManagerrolehasamenuinthefile/WEB-INF/html/sales-mgr-menu.html.WhichJSPcodesnippetshouldbeusedtomakethismenuvisibletotheuser?()A.%if(request.isUserInRole(SalesManager)){%%@includefile=’/WEB-INF/html/sales-mgr-menu.html’%%}%B.jsp:iftest=’request.isUserInRole(SalesManager)’%@includefile=’/WEB-INF/html/sales-mgr-menu.html’%/jsp:ifC.%if(request.isUserInRole(SalesManager)){%.jsp:includefile=’/WEB-INF/html/sales-mgr-menu.html’/.%}%D.jsp:iftest=’request.isUserInRole(SalesManager)’jsp:includefile=’/WEB-INF/html/sales-mgr-menu.html’//jsp:if

考题 下图为Web站点的文档属性窗口,若主目录下只有Default.jsp、index.htm和iisstart.htm三个文件,则客户端访问网站时浏览的文件是()。 A.Default.htm B.Default.jsp C.index.htm D.iisstart.htm

考题 由一个或几个按有意义的方式连接构成的web页构成为()A、主页B、web展示C、web站点D、网站

考题 目前JavaBeans和JSP技术是Web应用服务器三层结构中的中间层业务逻辑开发的主要工具。

考题 以下选项中()不是开发JSP应用程序所必需的。A、JDKB、J2EE SDKC、web服务器D、开发工具Eclipse

考题 Web开发技术中的客户端技术有()。A、超文本标记语言B、脚本语言C、可扩展标记语言D、ASPE、JSP

考题 简述web服务的工作原理。IIS的主要功能是什么?创建多个ftp站点的方法是什么?

考题 简述设计Web站点的一般步骤。

考题 FrontPage具有强大的管理WEB站点和制作网页的功能,便于网站开发人员使用,它有哪些主要功能。

考题 某Web站点的域名是www.a.com,TCP端口是8080,访问该站点的方式是()。

考题 在Windows Server 2003中,要远程管理Web站点,有哪些方式?

考题 使用JSP开发Web项目时,web.xml文件一般位于目录结构中的()下。A、src目录B、文档根目录或其子文件夹C、META-INF目录D、WEB-INF目录

考题 下列对于JSP说法中正确的是()A、JSP是Sun公司推出的新一代站点开发语言B、JSP完全解决了目前ASP、PHP的一个通病——脚本级执行C、JSP将内容的生成和显示进行分离D、JSP强调可重用的组件E、JSP采用标识简化页面开发

考题 某公司采用了JSP+Bean模式来完成某个开发任务。如果采用TOMCAT服务器,那么项目中的Java Bean在发布时应该放在()目录中。A、WEB-INFB、WEB-INF/libC、WEB-INF/classesD、webapps

考题 You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the  tag that requires the page name tobe specified dynamically when the header is imported. Which JSP code snippet performs the import of theheader content?() titleA、jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:includeB、jsp:import page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:importC、jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:includeD、jsp:import page=’/WEB-INF/jsp/header.jsp’. jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:import

考题 You are building JSP pages that have a set of menus that are visible based on a user’s security role. Thesemenus are hand-crafted by your web design team; for example, the SalesManager role has a menu in thefile /WEB-INF/html/sales-mgr-menu.html. Which JSP code snippet should be used to make this menuvisible to the user?()A、% if ( request.isUserInRole("SalesManager") ) { % %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % % } %B、jsp:if test=’request.isUserInRole("SalesManager")’ %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % /jsp:ifC、% if ( request.isUserInRole("SalesManager") ) { % . jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / . % } %D、jsp:if test=’request.isUserInRole("SalesManager")’ jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / /jsp:if

考题 判断题目前JavaBeans和JSP技术是Web应用服务器三层结构中的中间层业务逻辑开发的主要工具。A 对B 错

考题 问答题简述web服务的工作原理。IIS的主要功能是什么?创建多个ftp站点的方法是什么?

考题 单选题You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the  tag that requires the page name tobe specified dynamically when the header is imported. Which JSP code snippet performs the import of theheader content?()A jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:includeB jsp:import page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:importC jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:includeD jsp:import page=’/WEB-INF/jsp/header.jsp’. jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:import

考题 单选题You are building JSP pages that have a set of menus that are visible based on a user’s security role. Thesemenus are hand-crafted by your web design team; for example, the SalesManager role has a menu in thefile /WEB-INF/html/sales-mgr-menu.html. Which JSP code snippet should be used to make this menuvisible to the user?()A % if ( request.isUserInRole(SalesManager) ) { % %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % % } %B jsp:if test=’request.isUserInRole(SalesManager)’ %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % /jsp:ifC % if ( request.isUserInRole(SalesManager) ) { % . jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / . % } %D jsp:if test=’request.isUserInRole(SalesManager)’ jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / /jsp:if

考题 单选题Your web application views all have the same header, which includes the  tag in the  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.${param.pageTitle} 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:insertB jsp:include page=’/WEB-INF/jsp/header.jsp’. ${pageTitle=’Welcome Page’}. /jsp:includeC jsp:include file=’/WEB-INF/jsp/header.jsp’. ${pageTitle=’Welcome Page’}. /jsp:includeD jsp:insert page=’/WEB-INF/jsp/header.jsp’. jsp:param name=’pageTitle’ value=’Welcome Page’ / . /jsp:insertE jsp:include page=’/WEB-INF/jsp/header.jsp’. jsp:param name=’pageTitle’ value=’Welcome Page’ / . /jsp:include

考题 填空题某Web站点的域名是www.a.com,TCP端口是8080,访问该站点的方式是()。