字段查询 方面的问题
<!--#include file="conn.asp"--><html>
<head>
<link href="css.css" type=text/css rel=stylesheet>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<script type="text/javascript" src="include/admin.js"></script>
<title>管理学生信息</title>
</head>
<body >
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#000000" class="border">
<tr class="title">
<td width="9%" height="25" bgcolor="#A4B6D7"><div align="center">
</div></td>
<td width="91%" bgcolor="#A4B6D7">
<form name="form1" method="post" action="#">
<input type="text" name="major" id="major" >
<input type="submit" name="Submit" value="查询" onClick="tanchu">
</form></td>
</tr>
<tr class="title">
<td height="90" colspan="2" bgcolor="#A4B6D7"><table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#000000">
<tr>
<td width="10%" height="25" align="center" bgcolor="#cccccc">学号</td>
<td width="10%" align="center" bgcolor="#cccccc">姓名</td>
<td width="7%" align="center" bgcolor="#cccccc">性别</td>
<td width="10%" align="center" bgcolor="#cccccc">入学时间</td>
<td width="7%" align="center" bgcolor="#cccccc">年龄</td>
<td width="16%" align="center" bgcolor="#cccccc">籍贯</td>
<td width="16%" align="center" bgcolor="#cccccc">专业</td>
</tr>
<%
dim major
major=""
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from student where major='"&major&"' ",conn,1,3
if rs.eof or rs.bof then
response.write ("暂无记录!!")
else
rs.pagesize=10
page=clng(request("page"))
if page<1 then page=1
rs.absolutepage=page
for i=1 to rs.pagesize
%>
<tr bgcolor="#ffffff">
<td height="22" align="center"><%=rs("student_id")%></td>
<td align="center"><%=rs("student_name")%></td>
<td align="center"><%=rs("sex")%></td>
<td align="center"><%=rs("in_time")%></td>
<td align="center"><%=rs("age")%></td>
<td align="center"><%=rs("homeplace")%></td>
<td align="center"><%=rs("major")%></td>
</tr>
<%
rs.movenext
if rs.eof then exit for
next
end if
%>
</table>
<% if page<>1 then %>
<a href=<%=path%>?page=1&page1=<%=clng(page1)%>> 第一页</a>
<a href=<%=path%>?page=<%=(page-1)%>&page1=<%=clng(page1)%>> 上一页</a>
<%end if
if page<>rs.pagecount then %>
<a href=<%=path%>?page=<%=(page+1)%>&page1=<%=clng(page1)%>>下一页</a>
<a href=<%=path%>?page=<%=rs.pagecount%>&page1=<%=clng(page1)%>>最后一页</a>
<%end if %></td>
</tr>
</table>
</body>
</html>
主要就是想通过某几个字段查询学生的信息,不知道怎么实现呢?谢谢.