当前位置:首页计算机类软件水平考试初级网络管理员->某咨询公司对外提供行业研究报告,其客户分为银卡、金卡及VIP

某咨询公司对外提供行业研究报告,其客户分为银卡、金卡及VIP客户,行业研究报告级别分为A、B和C三类,分别对应VIP、金卡及银卡权限。行业研究报告访问权限定义如下:不同级别用户可访问同级别及低级别研究报告,但不能访问高级别的研究报告。

用ASP实现该用户区分服务系统,用IE打开该咨询公司的行业研究报告网页文件“Report.html”后的效果如图5-1所示。

初级网络管理员,章节练习,初级网络管理员真题卷

【Report.html文档的部分内容】

<html>

<head>

<title>行业研究报告列表</title>

</head>

<body>

<table width="95%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#A8D9EC">

……

<tr>

<td colspan="4" align="center">行业咨询报告列表</td>

</tr>

<tr>

<td align="center" bgcolor="#FFFFFF">报告名称</td>

<td align="center" bgcolor="#FFFFFF">关键字</td>

<td align="center" bgcolor="#FFFFFF">报告格式</td>

<td align="center" bgcolor="#FFFFFF">发布时间</td>

<td align="center" bgcolor="#FFFFFF">客户级别</td>

</tr>

<tr>

<td align="center" bgcolor="#FFFFFF"> <A HREF= "read.asp?clientlevel=C&docid=3213">2010-2015年中国餐饮业市场前景及投资战略咨询报告</a></td>

<td align="center" bgcolor="#FFFFFF">餐饮、市场预测、投资</td>

<td align="center" bgcolor="#FFFFFF">PDF</td>

<td align="center" bgcolor="#FFFFFF">2009年1月</td>

<td align="center" bgcolor="#FFFFFF">银卡</td>

</tr>

<tr>

<td align="center" bgcolor="#FFFFFF"><A HREF= "read.asp?clientlevel=B&docid=2213">2010-2015年中国移动电话行业市场深度调研及投资预测报告</a></td>

<td align="center" bgcolor="#FFFFFF">移动电话、投资预测</td>

<td align="center" bgcolor="#FFFFFF">PDF</td>

<td align="center" bgcolor="#FFFFFF">2009年9月</td>

<td align="center" bgcolor="#FFFFFF">金卡</td>

</tr>

<tr>

<td align="center" bgcolor="#FFFFFF"><A HREF= "read.asp?clientlevel=A&docid=2216">2010-2015年中国铜铁钼行业市场深度调研及投资预测报告</a></td>

<td align="center" bgcolor="#FFFFFF">铜铁钼、市场调研、投资预测</td>

<td align="center" bgcolor="#FFFFFF">PDF</td>

<td align="center" bgcolor="#FFFFFF">2010年3月</td>

<td align="center" bgcolor="#FFFFFF">VIP</td>

</tr>

</table>

</body>

</html>

【Read.asp文档的内容】

<html>

<body>

<%

if request.cookies("register")<>"true" then

response. (1) "register.asp"

end if

%>

<%

Set conn=Server.CreateObject("ADODB. (2)")

Set rs=Server.CreateObject("ADODB. (3)")

conn. (4)="Driver={Microsoft Access Driver (*.mdb)};Uid=;Pwd=;DBQ="&Server. (5)("database/client.mdb")

conn.open()

%>

<%

dim sql

sql ="select * from permission where clientID=" & request.cookies("clientID")

set rs=conn. (6) (sql)

%>

<%

if rs("Level")="VIP" then

response.cookies("docid") = Request.querystring("docid")

response.redirect "showreport.asp"

end if

if rs("Level")="GOLD" then

If Request.querystring("ClientLevel") = "A" then

response.redirect " (7) "

else

response.cookies("docid") = Request.querystring("docid")

response.redirect " (8) "

end if

end if

…省略部分代码…

%>

<%

rs.close()

%>

</body>

</html>

【问题1】(9分)

从以下备选答案内为程序中(1)~(6)处空缺选择正确答案,并填入答题纸对应的解答栏内。

(1)~(6)备选答案:

A. connection

B. close

C. recordset

D. command

E. Open

F. Run

G. Execute

H. Dim

I. MapPath

J. redirect

K. ConnectionString

【问题2】(4分)

error.asp用于显示出错信息,showreport.asp用于显示研究报告,请完成程序中的空(7)~(8),并填入答题纸对应的解答栏内。

【问题3】(2分)

下面有关cookie说法错误的是(9)。

(9)备选答案:

A.用户可以在浏览器中设置使用或者禁用Cookie

B.Cookie 的用途之一是存储用户在特定网站上的密码和ID

C.Cookie 以密文的方式在浏览器和服务器间传输

D.Cookie利用网页代码中的HTTP头信息进行传递

答案:
本题解析:

【问题1】(9分)

(1)J或redirect

(2)A或connection

(3)C或recordset

(4)K或ConnectionString

(5)I或MapPath

(6)G或Execute

【问题2】(4分)

(7) error.asp

(8) showreport.asp

【问题3】(2分)

(9)C 或 Cookie 以密文的方式在浏览器和服务器间传输。

本题考查考生对HTML和ASP语言的掌握程度,是比较传统的题目。

【问题1】

问题1主要考察ASP对数据库的常用操作以及网页重定向方法。

第(1)处是进行网页重定向操作。因此选择redirect。

第(2)处是建立数据库联接对象,因此选择connection。

第(3)处是建立数据集对象,因此选择recordset。

第(4)处是数据库的连接信息,因此选择ConnectionString。

第(5)处是数据库的路径信息,因此选择MapPath。

第(6)处是执行SQL语句操作,因此选择Execute。

【问题2】

问题2主要考察对该ASP程序功能的理解,该网站功能是通过用户的等级提供相应的调查报告的访问权限,从程序结构可以看出,当用户拥有访问文档权限时,则显示文档内容,若无权限则显是错误页面。

【问题3】

问题3考查cookie的基本概念。

更新时间:2022-10-21 01:55
纠错

你可能感兴趣的试题

单选题

在几种不同类型的软件维护中,通常情况下()所占工作量最大。

  • A.更正性维护
  • B.适应性维护
  • C.完善性维护
  • D.预防性维护
查看答案
单选题

在()中,项目经理的权力是最小的。

  • A.强矩阵型组织
  • B.平衡矩阵组织
  • C.弱矩阵型组织
  • D.项目型组织
查看答案
单选题

在项目实施的过程中,项目经理通过项目周报中的项目进度分析图表发现机房施工进度有延期风险。项目经理立即组织相关人员进行分析,下达了关于改进措施的书面指令。该指令属于( )

  • A.检查措施
  • B.缺陷补救措施
  • C.预防措施
  • D.纠正措施
查看答案
单选题

中级数据库系统工程师,章节精选,中级数据库系统工程师

中级数据库系统工程师,章节精选,中级数据库系统工程师

中级数据库系统工程师,章节精选,中级数据库系统工程师

  • A.见图A
  • B.见图B
  • C.见图C
  • D.见图D
查看答案
单选题

中级数据库系统工程师,章节精选,中级数据库系统工程师

中级数据库系统工程师,章节精选,中级数据库系统工程师

中级数据库系统工程师,章节精选,中级数据库系统工程师

  • A.见图A
  • B.见图B
  • C.见图C
  • D.见图D
查看答案
单选题

中级数据库系统工程师,章节精选,中级数据库系统工程师

中级数据库系统工程师,章节精选,中级数据库系统工程师

  • A.u[1]<v[2]
  • B.u[1]>v[2]
  • C.u[1]<v[5]
  • D.u[1]>v[5]
查看答案
单选题

The IT service manager resigns from a project that meets the scheduleand budget. After hiring an alternativenew manager, the team is opposed to the comments from the new manager. The team is at () developmentstages。

  • A.Forming
  • B.Storming
  • C.Norming
  • D.Performing
查看答案
单选题

()is closet to Deming's definition of Quality。

  • A.Conformance to requirements
  • B.Fitness for use
  • C.Continuousimprovement of products and services
  • D.Customer focus
查看答案
单选题

The IT service manager has learned that a software canimprove the efficiency of current and future project tasks. Because the software is fresh to the Company. Theengineer is not familiar with the software. The lT service manager decides to send the highest level engineero attend the external training course. The proiect manager uses () risk strategies。

  • A.mitigation
  • B.enhancement
  • C.development
  • D.sharing
查看答案
单选题

The process control charts are used ()。

  • A.to graph what typically focuses on the prevention of a problem
  • B.to detect the problem
  • C.to reject the problem
  • D.to determine the acceptability of the sample
查看答案