想问一下为什么不能selected在线
<select name="organization" id="organization"><option >请选择</option>
<%
aa=rs("organization")// 这个是纯在的数据库里的
set Rs2=server.CreateObject("adodb.recordset")
sql="select jgmc from jgwh"
Rs2.Open sql,conn,1,3
if not rs2.eof then
do while not rs2.eof
%><option <%if rs2("jgmc")="'"&aa&"'" then Response.Write "selected"%> value="<%=rs2("jgmc")%>"><%=rs2("jgmc")%></option>
<%
rs2.MoveNext
loop
end if
%>
</select>
请问这里为什么不能输出 SELECTED 啊帮忙啊