A. // B. /*……*/ C. ’ D. ”
A. request.form(“表单域名“) B. request.Querystring(“表单域名“) C. response.form(“表单域名“) D. response.Querystring(“表单域名“
A. conn=createobject(“ADODB.Connection”) B. conn=server.createobject(“ADODB.Connection”) C. setconn=server.createobject(ADODB.Connection) D. setconn=server.createobject(“ADODB.Connection”)
A. <InputType=”Text”Rows=”4”Cols=”30”Name=”txtintrol”> B. <TextAreaRows=”4”Cols=”30”Name=”txtintrol”> C. <TextAreaRows=”4”Cols=”30”Name=”txtintro”></TextArea> D. <TextAreaRows=”30”Cols=”4”Name=”txtintro”></TextArea>
A. SELECTTOP10*FROMuser B. SELECTnext10FROMuser C. SELECT*FROMuserWHERErownum<=10 D. SELECT*FROMuserWHERERecno()<=10
A. 文本框 B. 文本域 C. 单选框 D. 多选框
A. HTML标记都必须配对使用。 B. 在<title>和</title>标签之间的是头信息。 C. HTML标签并不是完全大小写无关的。 D. 在<u>和</u>标签之间的文本会以加粗字体显示。
A. Select*from员工where姓名='玛丽%' B. Select*from员工where姓名='%玛丽_' C. Select*from员工where姓名like'玛丽%' D. Select*from员工where姓名like'%玛丽%'
A. http://127.0.0.1/Ch/ShowTime.asp B. file:///Ch/ShowTime.asp C. http://Inetpub/wwwroot/Ch/ShowTime.asp D. http://localhost/ShowTime.asp
A. B. mstrTemp C. rTemp="user_name" D. ssion(strTemp)="张三" E. ssion("strTemp")="李四" F. sponse.WriteSession("user_name")%> G. 张三 H. 李四 I. 张三李四 J. 语法有错,无法正常输出