阅读下列说明,回答问题1 和问题2,将解答填入答题纸的对应栏内。【说明】某公司用ASP+Access 数据库开发了学生管理系统,用户登录界面如图4-1 所示:
【问题1】(每空1 分,共11 分)下面是该系统用户登录界面login.asp 的部分代码,其中验证码使用verycode.asp 文件生成。请根据题目说明,补充完成。< html xmlns="http://www.w3.org/1999/xhtml">(1)<title>学生信息管理系统</title><script language="JavaScript”><!--function chk(theForm){if (theForm. (2) .value=""){alert("请输入用户名!");the Form.user_name.focus();return( (3) );}if (theForm. (4) .value==""){alert("请输入密码!");theForm.user_pwd.focus();return(false);}(5) true;}...... //省略验证码检测部分代码--></script></head><body><table cellSpacing=1 cellPadding=5 width=460 border=0><FORM action="check.asp?action=login" method= (6) on Submit="returnchk(this)">…省略…<tr><td align=right width=60 height=30>用户名:</td><td height=30><input type= (7) name=user_name></td></tr><tr><td align=right height=30>密 码: </td><td height=30>< input type= (8) name=use_pwd> </td></tr><tr><td align=right>验证码:</td><td><input maxlength (9) name=veri_code><img src="vericode.asp"border='0' onClick="this.src=' (10) "" alt='点击刷新'/></td></tr><tr align=middle><td colSpan=2 height=40><input type= (11) value="登录">></td>…省略…</body></html>【问题2】(每空2 分,共4 分)下面是登录系统中check.asp 文件的部分代码,请根据login.asp 代码将其补充完整。<%username=trim(request("user_name"))password=trim(request("user_pwd"))set rs=server.createobject("adodb.recordset")sql="select * from admin where username=""&username&"" andpassword=""&md5(password)&""(12).open sql,conn,1,3if rs.eof thenResponse.write "<center>"&username&"用户名或密码错误,请重新输入!"else…省略…session("user_name")=request("usre_name")response. (13) "index.asp"end if…省略…%>
正确答案及解析
正确答案
解析
[问题1](1)<head>(2)user_name(3)false(4)user_pwd(5)return(6)post (7)text (8)password(9)4(10)verycode.Asp(11)submit[问题2] (12)rs (13)redirect
【解析】
[问题1]根据HTML文件的基本结构和上下文关系可以知道,(1)空的位置应该是一个<head>(2)可以结合上下文,必须是用户名这个框的名字,从“the Form.user_name.focus();”这里可以看到,就是user_name.(3)结合上下文,从用户输入密码对应的代码就可以看出来,他们的作用是一样的,属于平行的两个代码。所以是false。(4)与第(2)空的原因一样,可以找到是user_pwd。(5)结合上下文,这里是最终的返回结果,所以是return。(6)空用于给form表单提交数据指定方式,只有post和get。这里需要提交密码信息,显然应该使用post。(7)输入用户名,是一个文本框,因此为text(8)输入密码,类型是password(9)从图中的校验码可以看到,只有4个数字,因此最大长度是4.(10)这里是要点击刷新,也就是要重新生成校验码,而题目指出,校验码是有verycode.Asp生成的,所以这里要指出this.src就是这asp文件。(11) 登录按钮实际上就是提交按钮,类型为submit。[问题2] (12).open sql,conn,1,3 这个代码实际上就是让记录集执行相应的sQL,返回数据,因此这里应该是使用记录集。从接下来的if rs.eof then 这一句可以看到,记录集的名字就是rs。(13) 验证成功之后,要转入正常的网站页面,因此这里需要使用一个重定向的语句。
你可能感兴趣的试题
Advancements in ( )have contributed to the growth of the automotive industry through the creation and evolution of self-driving vehicles.
-
- A.Artificial Intelligence
- B.Cloud Computing
- C.Internet of Things
- D.Big Data
- 查看答案
In project human resource management , ( )is not a source of power for the project manager.
-
- A.referent power
- B.expert power
- C.reward power
- D.audit power
- 查看答案
At the project establishment stage , the feasibility study mainly includes techinical feasibility analysis , ( ), operation environment feasibility analysis and other aspects of feasibility analysis.
-
- A.detail feasibility analysis
- B.opportunity analysis
- C.economic feasibility analysis
- D.risk analysis
- 查看答案
( )is a grid that shows the project resources assigned to each work package.
-
- A.Stakeholder engagement assessment matrix
- B.Requirements traceability matrix
- C.Probability and impact matrix
- D.Responsibility assignment matrix
- 查看答案
Xinhua News Agency reported in January 2022,Chian will further promote the developmet of a digital economy during the 14th Five-Year Plan eriod(2021-2025). The plan also emphasized industrial ( )transformation.
-
- A.digital
- B.networking
- C.intelligentize
- D.informatization
- 查看答案