ASP新闻栏目切换+JS

<%
dim rs
dim sql
dim count
set rs=server.createobject("adodb.recordset")
sql = "select * from kml_sclass"
rs.open sql,conn,1,1
%>
var onecount;
onecount=0;
subcat = new Array();
        <%
        count = 0
        do while not rs.eof
        %>
subcat[<%=count%>] = new Array("<%= trim(rs("sclassname"))%>","<%= trim(rs("bclassid"))%>","<%= trim(rs("sclassid"))%>");
        <%
        count = count + 1
        rs.movenext
        loop
        rs.close
        %>
onecount=<%=count%>;

    {
    document.myform.sclassid.length = 0;

    var i;
    for (i=0;i < onecount; i++)
        {
            if (subcat[i][1] == locationid)
            {
              document.myform.sclassid.options[document.myform.sclassid.length] = new Option(subcat[i][0],subcat[i][2]);
            }       
        }
       
    }   





     
修 改 新 闻 
          中文版     
文章类型:    <%
    sql = "select * from kml_bclass"
    rs.open sql,1
 if rs.eof and rs.bof then
 response.write "请先添加栏目。"
 response.end
 else
%>

     

相关文章

我们利用Serv-U的obdc功能,可以把FTP用户信息存在数据库中,这样对Web操作方便了很多,下面是在线更改...
MicrosoftVBscript运行时错误(0x000A0005) 无效的过程调用或参数 MicrosoftVBscript运行时错误(0x000A0...
引用记录集中域值的最有效方法是什么?   到目前为止,我都是用名字引用记录集中的域值的。这可能是一...
学习目的:学会数据库的基本操作2(查询记录) 在第四天中我们有这样一个程序:<%set conn=server.c...
  引言  本文针对ASP程序设计中最基础、也是最关键的部分 数据库文件的调用 进行说明,同时谈谈ASP...
今天偶尔打开dvbbs,突然发现总固项的贴子,动网论坛V7.1.0正式版[26日09:30时更新] 功能增加了不少,也...