📄 getprofession2.asp
字号:
<!--#include file="../conn/conn.asp" -->
<!--#include file="../Inc/Commoncode.asp" -->
<%professionid=request.QueryString("professionid")
if Chkrequest(professionid)=True then
set rs=server.createobject("adodb.recordset")
sql="select profession_id,profession_name,profession_fid from JOB_profession where profession_fid="&professionid&" order by date desc"
rs.open sql,conn,1,1
if not rs.eof then
do while not rs.eof
aa=aa&"<option value="&rs("profession_id")&">"&rs("profession_name")&"</option>"
rs.movenext
loop
end if
rs.close
set rs=nothing
end if
conn.close
set conn=nothing
%>
<script>
parent.cprofession.innerHTML="";
parent.load400.innerHTML="<select name=subprofession id=subprofession><%=aa%></select>";
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -