如何在此ASP网页的搜索按钮下增加一项搜索条件?
所图所示,如何在已有的搜索功能中增加“按用户群组”搜索,请达人帮忙修改。以下内容为原始代码:====================<TR><TDwidth="*"><%...
所图所示,如何在已有的搜索功能中增加“按用户群组”搜索,请达人帮忙修改。以下内容为原始代码:
====================
<TR>
<TD width="*">
<%
if session("flag") then
%>
搜索用户:
<select name="loginID">
<option value="">日志检索</option>
<%
sql="select * from [user] where loginID<>'admin' order by id"
set rs=conn.execute(sql)
while not rs.eof
%>
<option value="<%=rs("loginID")%>"<%if rs("loginID")=request.QueryString("loginID") then%> selected<%end if%>><%=rs("username")%></option>
<%
rs.movenext
wend
rs.close
%>
</SELECT>
<%end if%>
日期:从
<input name="startDate" type="text" id="startDate" size="10" onClick="javascript:ShowCalendar('startDate')" value="<%=request.QueryString("startDate")%>"> <img style="cursor:hand;" src="images/date1.jpg" onClick="javascript:ShowCalendar('startDate')">
到
<input name="endDate" type="text" id="endDate" size="10" onClick="javascript:ShowCalendar('endDate')" value="<%=request.QueryString("endDate")%>"> <img style="cursor:hand;" src="images/date2.jpg" onClick="javascript:ShowCalendar('endDate')">
<input name="button" type="submit" class="button" id="button" onClick="location.href='worklog.asp?startDate='+document.all.startDate.value+'&endDate='+document.all.endDate.value<%if session("flag") then%>+'&loginID='+document.all.loginID.options[document.all.loginID.selectedIndex].value<%end if%>" value="搜索"></TD>
</TR>
==============================
PS:数据库ACCESS中的“Usergroup”列是我后来添加的。 展开
====================
<TR>
<TD width="*">
<%
if session("flag") then
%>
搜索用户:
<select name="loginID">
<option value="">日志检索</option>
<%
sql="select * from [user] where loginID<>'admin' order by id"
set rs=conn.execute(sql)
while not rs.eof
%>
<option value="<%=rs("loginID")%>"<%if rs("loginID")=request.QueryString("loginID") then%> selected<%end if%>><%=rs("username")%></option>
<%
rs.movenext
wend
rs.close
%>
</SELECT>
<%end if%>
日期:从
<input name="startDate" type="text" id="startDate" size="10" onClick="javascript:ShowCalendar('startDate')" value="<%=request.QueryString("startDate")%>"> <img style="cursor:hand;" src="images/date1.jpg" onClick="javascript:ShowCalendar('startDate')">
到
<input name="endDate" type="text" id="endDate" size="10" onClick="javascript:ShowCalendar('endDate')" value="<%=request.QueryString("endDate")%>"> <img style="cursor:hand;" src="images/date2.jpg" onClick="javascript:ShowCalendar('endDate')">
<input name="button" type="submit" class="button" id="button" onClick="location.href='worklog.asp?startDate='+document.all.startDate.value+'&endDate='+document.all.endDate.value<%if session("flag") then%>+'&loginID='+document.all.loginID.options[document.all.loginID.selectedIndex].value<%end if%>" value="搜索"></TD>
</TR>
==============================
PS:数据库ACCESS中的“Usergroup”列是我后来添加的。 展开
展开全部
sql="select * from [user] where loginID<>'admin' order by id"
改成
if request("loginid")<>"" then
sql="select * from [user] where loginID<>'admin' and usergroup='" & request("loginid") & "' order by id"
else
sql="select * from [user] where loginID<>'admin' order by id"
end if
改成
if request("loginid")<>"" then
sql="select * from [user] where loginID<>'admin' and usergroup='" & request("loginid") & "' order by id"
else
sql="select * from [user] where loginID<>'admin' order by id"
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询