备注字段:note 记录内容字段:content(按你说的,你数据表里,应该有相关记录)
我就写关键语句:test.asp
<form action="test.asp" method="post">
<td>
<select name=content>
这里的记录循环就省略了
<option value="<%=rs("content")%>">></option>
</select>
</td>
<input type="submit" value="查询“>
</form>
<%
content=trim(request("content))
if content<>"" then
sq1="select note from tablename(你的表名) where content='"&content&"'"
end if
%>
<td><%=rs("note")%></td>
这样就可以,省略的地方都很简单,你应该看得懂吧