试题五(共15分)阅读下列说明,根据网页显示的效果图,回答问题1至问题2。【说明 】某电子商务网站如图5-1所示。【index.html 文档的内容 文档的内容 文档的内容 文档的内容】htmlheadtitle网上商城/title/headframeset (1)="15%,70%,15%" noresize="noresize" border=1frame. src="frame_top.html" name="top"frameset (2)="20%,80%"frame. src="frame_left.html" name="left"frame. src="frame_right.html" name="right"/framesetframe. src="count.asp" name="bottom"/frameset/html【frame_left.html 文档的内容】html省略部分代码……centertable border="1" bordercolor="blue"trtda href="content_1.html" (3)="right"img src="img/1.gif" width="100" height="30" border="0"/a/td/tr省略部分代码……/table/center省略部分代码……/html【count.asp 文档的内容 文档的内容 文档的内容 文档的内容】htmlheadtitle计数器/titlebody%Set conn=Server.CreateObject("ADODB.Connection")Set rs=Server.CreateObject("ADODB.(4)")conn.ConnectionString="(5)={Microsoft Access Driver (*.mdb)};Uid=;Pwd=;DBQ="Server. (6) ("database/count.mdb")conn.open()(7) sqlsql="(8) count set hit=hit+1"conn.(9)(sql)%sql = "select * from count"set rs=conn.execute(sql)%%lasthit=rs.fields("lasthit")tdate=year(Now()) "-" month(Now()) "-" day(Now())sql="update count set lasthit='" tdate"' where ID="rs.fields("id")conn.execute(sql)%%sql = "select * from count"set rs=conn.execute(sql)%table bgcolor=bluetrtd width="100%" align=center总访问%=rs("hit")%次,最后访问日期%=rs("lasthit")%/td/tr/table%rs.close()%/body/html【问题1】(6 分)为程序中(1)~(3)处空缺选择正确答案,并填入答题纸对应的解答栏内。(1)~(3)备选答案:A. srcB. colsC. rowsD. targetE. link
试题五(共15分)
阅读下列说明,根据网页显示的效果图,回答问题1至问题2。
【说明 】
某电子商务网站如图5-1所示。
【index.html 文档的内容 文档的内容 文档的内容 文档的内容】
<html>
<head>
<title>网上商城</title>
</head>
<frameset (1)="15%,70%,15%" noresize="noresize" border=1
<frame. src="frame_top.html" name="top">
<frameset (2)="20%,80%">
<frame. src="frame_left.html" name="left">
<frame. src="frame_right.html" name="right">
</frameset>
<frame. src="count.asp" name="bottom">
</frameset>
</html>
【frame_left.html 文档的内容】
<html>
省略部分代码……
<center>
<table border="1" bordercolor="blue">
<tr>
<td><a href="content_1.html" (3)="right">
<img src="img/1.gif" width="100" height="30" border="0"></a></td>
</tr>
省略部分代码……
</table>
</center>
省略部分代码……
</html>
【count.asp 文档的内容 文档的内容 文档的内容 文档的内容】
<html>
<head>
<title>计数器</title>
<body>
<%
Set conn=Server.CreateObject("ADODB.Connection")
Set rs=Server.CreateObject("ADODB.(4)")
conn.ConnectionString="(5)={Microsoft Access Driver (*.mdb)};Uid=;Pwd=;DBQ=
"&Server. (6) ("database/count.mdb")
conn.open()
(7) sql
sql="(8) count set hit=hit+1"
conn.(9)(sql)%>
sql = "select * from count"
set rs=conn.execute(sql)
%>
<%
lasthit=rs.fields("lasthit")
tdate=year(Now()) & "-" & month(Now()) & "-" & day(Now())
sql="update count set lasthit='" &tdate&"' where ID="&rs.fields("id")
conn.execute(sql)
%>
<%
sql = "select * from count"
set rs=conn.execute(sql)
%>
<table bgcolor=blue><tr><td width="100%" align=center>总访问<%=rs("hit")%>次,最后访问
日期<%=rs("lasthit")%></td></tr></table>
<%
rs.close()
%>
</body>
</html>
【问题1】(6 分)
为程序中(1)~(3)处空缺选择正确答案,并填入答题纸对应的解答栏内。
(1)~(3)备选答案:
A. src
B. cols
C. rows
D. target
E. link