设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 74|回复: 4
打印 上一主题 下一主题

[求助]来看一下 平论代码怎样加到这段代码中,请求帮助

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-14 07:24:28 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
此代码为内容页 图片样式:

还需要哪个地方的代码, 我需要加什么代码,

代码如下:
<!--#include file="inc/conn.inc"-->
<!--#include file="inc/getxmlinfo.inc"-->
<%
id=request("id")
if not IsNumeric(id) then
btid=0
end if
if isnull(id) or id="" then
id=0
else
if clng(id)<=0 then
id=0
end if
end if
if id=0 then
%>
<HTML><HEAD><TITLE> BT免费下载</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<LINK href="images/sty.css" type=text/css rel=stylesheet>
<BODY>
<!-- #include file="include/header.asp" -->
<TABLE cellSpacing=0 cellPadding=0 width="100%">
<TBODY>
<TR vAlign=top>
<TD width="100%">输入的信息编号非法!
</TD>
</TR>
</TBODY>
</TABLE>
<!-- #include file="include/footer.asp" -->
</BODY></HTML>
<% response.end
end if
sqlstring="select * from data_BTinfo where id="&id
rs.open sqlstring,conn
if rs.eof or rs.bof then%>
<HTML><HEAD><TITLE><%=rs("BTname")%> BT免费下载</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<LINK href="images/sty.css" type=text/css rel=stylesheet>
<BODY>
<!-- #include file="include/header.asp" -->
<TABLE cellSpacing=0 cellPadding=0 width="100%">
<TBODY>
<TR vAlign=top>
<TD width="100%">输入的信息编号非法!
</TD>
</TR>
</TBODY>
</TABLE>
<!-- #include file="include/footer.asp" -->
</BODY></HTML>
<% rs.close
else
%>
<HTML><HEAD><TITLE><%=rs("BTname")%> BT免费下载</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<LINK href="images/sty.css" type=text/css rel=stylesheet>
<BODY>
<!-- #include file="include/header.asp" -->
<TABLE cellSpacing=0 cellPadding=0 width="100%">
<TBODY>
<TR vAlign=top>
<TD width="100%">
<DIV id="HeadingOne">

<div>
<dl id="m_a">
<dt>[影视短片]-<%=rs("BTname")%></dt>
<dd>类型:<a href="default.asp?tj=1&keyword=<%=rs("BTtype")%>"><%=rs("BTtype")%></a></dd>
<%
if not isnull(rs("BTurl")) then
BTurl=rs("BTurl")
else
BTurl=""
end if
%>
<dd>资源标题:<%=rs("BTname")%></dd>
<dd>资源大小:<%=rs("BTsize")%></dd>
<dd>发布日期:<%=rs("BTdate")%></dd>
<%
if rs("bagid")=0 or isnull(rs("bagid")) then
bagid=0
else
bagid=rs("bagid")
end if
if rs("olddataid")=0 or isnull(rs("olddataid")) then
olddataid="0"
else
olddataid=cstr(rs("olddataid"))
end if
rs.close
%>
</dl>
</div>
<div>
<dl>
<dd><a href="<%=BTurl%>">第一下载点</a>&nbsp;&nbsp;<%if right(BTurl,8)<>".torrent" then%><a href="#" onclick="window.open ('<%=BTurl%>','sec1','height=300,width=200,toolbar=no,status=no,Top=60,Left=170,resizable=yes,scrollbars=yes');">第二下载点</a>&nbsp;&nbsp;<%end if%><a href="help/index.asp" target="_blank">如何下载?</a></dd>
</dl>
</div>
<div>
<dl>
<%
if bagid=0 then
call showfromdb(id)
else
call showfromxml(bagid,olddataid)
end if
%>
</dl>
</div>
</DIV></TD>
<TD>
<!-- #include file="include/infopagead.asp" -->
</TD></TR></TBODY></TABLE>
<div>
<DIV id=Feeds><DIV id=AtomRSS><B></B></DIV></DIV></DIV>
<%
end if
%>
<!-- #include file="include/footer.asp" -->
<%
call CloseConn()
%>
</BODY></HTML>
<%
sub showfromdb(id)
sqlstring="select * from contentinfo where id="&id
set rs=conn.execute(sqlstring)
if not (rs.eof or rs.bof) then
if not isnull(rs("delicacy")) then
%>
<dd><IMG onload="javascript:if(this.width>520)this.width=520;" src="<%=rs("delicacy")%>"></dd>
<%
end if
if not isnull(rs("direct")) then
%>
<dd>导演:<%=rs("direct")%></dd>
<%
end if
if not isnull(rs("playwright")) then
%>
<dd>编剧:<%=rs("playwright")%></dd>
<%
end if
if not isnull(rs("cast")) then
%>
<dd>演员表:<%=rs("cast")%></dd>
<%
end if
if not isnull(rs("ReleaseDates")) then
%>
<dd>上映日期:<%=rs("ReleaseDates")%></dd>
<%
end if
if not isnull(rs("country")) then
%>
<dd>国家:<%=rs("country")%></dd>
<%
end if
if not isnull(rs("language")) then
%>
<dd>语言:<%=rs("language")%></dd>
<%
end if
if not isnull(rs("color")) then
%>
<dd>色彩:<%=rs("color")%></dd>
<%
end if
if not isnull(rs("sound")) then
%>
<dd>声音:<%=rs("sound")%></dd>
<%
end if
if not isnull(rs("runningtime")) then
%>
<dd>时长:<%=rs("runningtime")%></dd>
<%
end if
if not isnull(rs("plotsummary")) then
%>
<dd>简介:<%=rs("plotsummary")%></dd>
<%
end if
end if
rs.close
end sub

sub showfromxml(bagid,olddataid)
On Error Resume Next
sqlstring="select bagxmlpath from data_BAGinfo where bagid="&bagid
set rs=conn.execute(sqlstring)
if not (rs.eof or rs.bof) then
bagxmlpath=rs(0)
bagxmlpath=replace(bagxmlpath,"../","")
readstatus="true"
set xmlobj = server.CreateObject("Microsoft.XMLDOM")
myxml= server.MapPath(bagxmlpath)
'response.write myxml
xmlobj.load(myxml)
if err=0 then
call showinfo(olddataid,xmlobj)
end if
end if
rs.close
end sub
%>
请稍微详细的给小弟说明一下,万分感谢!!!
对了还有 在加入一个 浏览次数 统计的代码?


附件: 只有本站会员才能下载或查看附件,请您 登录 或 注册
2#
 楼主| 发表于 2010-1-14 07:24:32 | 只看该作者
真没人会?
没人知道不是吧!
自己能做程序这个应该……
麻烦大家一下帮帮小弟
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-14 07:24:36 | 只看该作者
你想加到哪个位置就哪个位置,没有人会去追究你的责任!
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-14 07:24:39 | 只看该作者
不是这个意思?需要怎么整合呢?
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 06:38 , Processed in 0.118150 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表