ASP如何制作动态下拉列表来读取出SQL数据库记录并且去掉重复的数据
展开全部
你的意思是不是要把数据库之中的记录,去掉重复的记录并输出,显示到下拉列表之中啊?如果是这样的话:
sql="select distinct 字段名 from 数据表名"
Set rs=Conn.Execute(sql)
response.write"<select>"
do while not rs.eof
response.write"<option value='"&rs("字段名")&"'>"&rs("字段名")&"</option>"
rs.movenext
loop
response.write"</select>"
rs.close
set rs=nothing
sql="select distinct 字段名 from 数据表名"
Set rs=Conn.Execute(sql)
response.write"<select>"
do while not rs.eof
response.write"<option value='"&rs("字段名")&"'>"&rs("字段名")&"</option>"
rs.movenext
loop
response.write"</select>"
rs.close
set rs=nothing
展开全部
DataSet ds = dbconn.getBinding("select distinct(username) from dtsper ", "a");
DropDownList6.DataSource = ds;
DropDownList6.DataTextField = "username";
DropDownList6.DataValueField = "username";
DropDownList6.DataBind();
this.DropDownList6.Items.Add("请选择");
this.DropDownList6.Items[this.DropDownList6.Items.Count - 1].Value = " ";
this.DropDownList6.SelectedIndex = this.DropDownList6.Items.Count - 1;
DropDownList6.DataSource = ds;
DropDownList6.DataTextField = "username";
DropDownList6.DataValueField = "username";
DropDownList6.DataBind();
this.DropDownList6.Items.Add("请选择");
this.DropDownList6.Items[this.DropDownList6.Items.Count - 1].Value = " ";
this.DropDownList6.SelectedIndex = this.DropDownList6.Items.Count - 1;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不麻烦我写几个简短的你就应该明白了
例 <%
do while not rs.eof
if instr(cc,rs("aa"))<0 then
cc=cc&"##"&rs("aa")
%>
<option value="<%=rs("aa")%>"><%=rs("aa")%></option>
<%
end if
rs.movenext
loop
%>
例 <%
do while not rs.eof
if instr(cc,rs("aa"))<0 then
cc=cc&"##"&rs("aa")
%>
<option value="<%=rs("aa")%>"><%=rs("aa")%></option>
<%
end if
rs.movenext
loop
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
查询语句用 GROUP BY
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询