问答题

阅读以下技术说明,根据网页显示的效果图,根据要求回答问题。
[说明]
某电子商务网站首页使用ASP语言实现,文件名为“index.asp”。用IE浏览器打开该网页后的部分显示效果,如图所示。

[index.asp文件的内容]
<html>
______某商务网站首页______
<!--#______ file="include/header.asp"-->
<table width="784">
<tr>
……
<form ……>
<td width="45%">
<input type="text" size="15" maxlength="15" ______="关键字">
<select name="action">
<option value="1" ______>商品名称</option>
<option value="2">商品类别</option>
<option value="3">商品简介</option>
<option value="4">详细说明</option>
</select>
<input type="submit" value="立即查询">
<input type="button" value="高级查询" onClick="location. href=’search. asp’">
</td>
</form>
</tr>
</table>
</html>

该网站用到了层叠样式表(CSS),其样式表文件(example.css)在网站根目录下的include文件夹下。某网页文件在网站根目录下的admin目录中,下面是该页面的部分代码,其作用是导入外部样式表文件。请为以下空缺处选择合适的答案。
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<()_href="()" rel="stylesheet"()="text/css">
A.a B.link C.css D.open
A.../include/example.css B.../admin/include/example.css
C.../admin/example.css D.../example.css
A.type B.include C.link D.content

【参考答案】

B(或link) A(或../include/example.css) A(或type)

热门 试题

问答题
该系统用户登录界面文件名为login.asp,用户输入的数据由check.asp文件判断。下面是login.asp的部分代码,请根据题目说明,将空处补充完成。 <html xmlns= http: www.w3.org 1999 xhtml > <head> <title>查询系统< title> <script.language= JavaScript > <!--______ chk(theForm) { if(theForm.admin_name.value== }{ alert( 请输入管理账号! ); theForm.admin_name.focus(); retumR(falSe); } if(theForm.admin_pass.value== }{ alert( 请输入管理密码! ); theForm.admin_pass.focus(); return(false); } return ______; -->< script>< head> <body> <table cellSpacing=1 ceIIPadding=5 width=460 border=0> <form.action= ______ action=login method=post nSubmit= return chk(this) ><tbody>…… <tr> <td align=right width=60 height=30>用户名:< td> <td height 30><input type=______ name=admin name>< td>< tr> <tr> <td alignrightheight 30>密 码: < td> <td height 30><input type=______ name=admin_pass>< td>< tr> <tr> <td align=right>验证码:< td> <td><input maxLength=4 name=VerifyCode><img src= yz.asp bordeF’0’ onClick this.src=’yz.asp’ alt=’点刷新验证码’ >< td>< tr> <tr align middle> <td colSpan=2 height=40><input type=______ value= 提交 > <input class=btn type= ______ value= 取消 >< td>…… < body> < html> A.password B.reset C.check.asp D.true E.text F.submit G.function