R
redwood
Unregistered / Unconfirmed
GUEST, unregistred user!
<%
tietypesql="select * from tietype where type_id in (select user_type from user_type where user_account='"&request("user_name_del")&"' and (user_type<> 'admin' or user_type<> 'yuangong')"
set tietypelist=Server.CreateObject("ADODB.RecordSet")
tietypelist.open tietypesql,Conn,1,3
while not tietypelist.eof %>
<option value="<% =tietypelist("type_id") %>"><% =tietypelist("type_name") %></option>
<% tietypelist.movenext
wend
%>
为什么在select中什么也没有?
表tietype的type_id是自增类型
表user_type的user_type是文本类型,内容除了排出的那两个以外都是数字
是不是两个类型不一样造成的,怎样才等得到结果?
tietypesql="select * from tietype where type_id in (select user_type from user_type where user_account='"&request("user_name_del")&"' and (user_type<> 'admin' or user_type<> 'yuangong')"
set tietypelist=Server.CreateObject("ADODB.RecordSet")
tietypelist.open tietypesql,Conn,1,3
while not tietypelist.eof %>
<option value="<% =tietypelist("type_id") %>"><% =tietypelist("type_name") %></option>
<% tietypelist.movenext
wend
%>
为什么在select中什么也没有?
表tietype的type_id是自增类型
表user_type的user_type是文本类型,内容除了排出的那两个以外都是数字
是不是两个类型不一样造成的,怎样才等得到结果?