主题:  小问题,很烦人.

透明男孩

职务:普通成员
等级:2
金币:0.0
发贴:373
#12004/12/27 21:04:26
article.hbdx.com.cn/paihang.asp?num=10&titlelen=15
这是我的调用最新文章的文件,在IE里输入可以显示内容.
<script src="http://article.hbdx.com.cn/paihang.asp?num=10&titlelen=15"></script>
这是在首页调用的代码,调用却不能显示了.
还有TITLELEN这个值为什么不管用?
下面是PAIHANG.ASP文件代码:
<!--#include file="conn.asp"-->
<!--#include file="include/function.asp"-->
<%
url="http://article.hbdx.com.cn/"
num=request.querystring("num")
if num=empty then
    response.write "document.write(""请设置显示数量!"");"
    response.end
elseif isnumeric(num)=false then
    response.write "document.write(""请正确设置显示数量!"");"
    response.end
end if
titlelen=request.querystring("titlelen")
if titlelen=empty then
    response.write "document.write(""请设置显示字符数!"");"
    response.end
elseif isnumeric(titlelen)=false then
    response.write "document.write(""请正确设置显示字符数!"");"
    response.end
end if
set rs=conn.execute("select top "&num&" data_id,title,addtime from data order by data_id desc")
if rs.bof or rs.eof then
    response.Write "document.write(""没有数据!"");"
    response.End
else
    do while not rs.eof
    if len(rs("title"))>titlelen then
        title=left(rs("title"),titlelen) & "..."
    else
        title=rs("title")
    end if
    response.write "document.write(""<tr><td><font color=#ff0000>·</font>&nbsp;"");"
    response.write "document.write(""<font color=#666666>["&rs("addtime")&"]</font>&nbsp;"");"
    response.write "document.write(""<a href="&url&"visit.asp?data_id="&rs("data_id")&" target=_blank >"&title&"</a>"");"
    response.write "document.write(""<br></td></tr>"");"
    rs.movenext
    loop
    rs.close:set rs=nothing
end if
%>
请各位帮忙.



蓝鲸

职务:版主
等级:5
金币:42.1
发贴:2614
#22004/12/27 23:33:17
这代码是干什么用呢?我这里能显示数据
另请注意Empty与""的区别


非常大鱼

浮尘

职务:普通成员
等级:3
金币:7.0
发贴:1258
#32004/12/28 10:31:30
<script src="http://article.hbdx.com.cn/paihang.asp?num=10&titlelen=15"></script>
有这种用法吗?



透明男孩

职务:普通成员
等级:2
金币:0.0
发贴:373
#42004/12/28 10:37:15
它是用来显示最后更新的数据.
现在问题是TITLELEN这个值不管用,不知错在哪?



牧羊孩

职务:普通成员
等级:1
金币:0.0
发贴:20
#52004/12/28 21:51:36
似乎没问题啊!?



满天星

职务:普通成员
等级:1
金币:0.0
发贴:30
#62004/12/29 17:00:20
把双引还成单引试试。