阅读下列说明,根据网页显示的效果图及要求回答问题。
[说明]
以下是用ASP实现的一个网络留言系统。用IE打开网页文件“index.asp”后的效果如图所示。
[index.asp文档的内容]
<!--#include file="conn.asp"-->
<html>
<head>
<title>
留言系统</title>
</head><body>
<%Set rs=Server.CreateObject("ADODB.Recordset")
rs.Open "Select*From [message] order by id", Conn, 1, 1
if
rs.eof and rs.bof
then______. Write("<div align=’center’ class=’bg’>没有留言</div>")
end if
i=1
do while ______
%>
<table width="700" border="1" align="center">
<tr>
<td height="30"><p><%= ______ %></p>
<%=rs("name")%> <%=rs("ip")%> <%=ms("time")%>
<a href="del.aspdel=<%=rs("id")%>"target="_parent">删除</a>
</td>
</tr>
<tr>
<td width="700" height="20"><%=rs("message")%></td>
</tr>
</table>
<%rs.movenext
i=i+1
loop
%>
<table width="700" border="0" align="center">
<tr>
<td><div align="left"><%=rs.recordcount%>条留言</div></td>
</tr>
</table>
<br/>
<table width="704" border="0" align="center">
<tdwidth="311"><form id="form1" name="form1" menhod="post" action="act.asp">
<table width="302" border="0">
<tr>
<tdwidth="302">姓名<input name="name" type="text" class="box" id="name"
size="15"/><p/T>
验证码<input name=’validatecode’ type=’text’ class="box" size=’5’>
<img src=’imgchk/validatecode.asp’align=’absmiddle’border=’0’> </td>
</tr>
<tr>
<td>内容 ______ </td>
</tr>
<tr>
<td height="30"><inpun type="______" name="tj" value="提交留言"/>
<inpun name="ip" type="hidden" id="ip" value="<%=Request.
serverVariables("REMOTE_ADDR")%>"/></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<%rs.close %>
</body>
</html>
以下______属于ASP.NET创建的网页程序文件。
A.index.asp B.index.htm C.index.aspX