📄 film.asp
字号:
<td height="20" align="left"><span style="font-weight: bold">[影片产地]</span></td>
<td align="left"><%if film_from=1 then%>欧美<%end if%><%if film_from=2 then%>港台<%end if%><%if film_from=3 then%>日韩<%end if%><%if film_from=4 then%>大陆<%end if%><%if film_from=5 then%>其它<%end if%></td>
</tr>
<tr>
<td height="20" align="left"><span style="font-weight: bold">[推荐级别]</span></td>
<td align="left"><img src="images/<%=film_level%>star.gif" width="64" height="12"></td>
</tr>
<tr>
<td height="20" align="left"><span style="font-weight: bold">[清晰程度]</span></td>
<td align="left"><img src="images/clear_<%=film_clear%>.gif" width="55" height="12"></td>
</tr>
<tr>
<td height="20" align="left"><span style="font-weight: bold">[需要影币]</span></td>
<td align="left"><%=film_money%> 点/每集 (仅对个人计点用户有效) </td>
</tr>
<tr>
<td height="20" align="left"><span style="font-weight: bold">[加入时间]</span></td>
<td align="left"><%=join_time%></td>
</tr>
<tr>
<td height="20" align="left"><span style="font-weight: bold">[点播次数]</span></td>
<td align="left"><%=see_count%> 次</td>
</tr>
</table></td>
</tr>
</table>
<script language="javascript">
function show_play()
{
document.all("film_play").src="images/img45_2.gif"
document.all("film_down").src="images/img46.gif"
document.all("film_fav").src="images/img47.gif"
document.all("film_err").src="images/img48.gif"
document.all("tb_play").style.display="inline"
document.all("tb_down").style.display="none"
document.all("tb_fav").style.display="none"
document.all("tb_err").style.display="none"
}
function show_down()
{
document.all("film_play").src="images/img45.gif"
document.all("film_down").src="images/img46_2.gif"
document.all("film_fav").src="images/img47.gif"
document.all("film_err").src="images/img48.gif"
document.all("tb_play").style.display="none"
document.all("tb_down").style.display="inline"
document.all("tb_fav").style.display="none"
document.all("tb_err").style.display="none"
}
function show_fav()
{
document.all("film_play").src="images/img45.gif"
document.all("film_down").src="images/img46.gif"
document.all("film_fav").src="images/img47_2.gif"
document.all("film_err").src="images/img48.gif"
document.all("tb_play").style.display="none"
document.all("tb_down").style.display="none"
document.all("tb_fav").style.display="inline"
document.all("tb_err").style.display="none"
}
function show_err()
{
document.all("film_play").src="images/img45.gif"
document.all("film_down").src="images/img46.gif"
document.all("film_fav").src="images/img47.gif"
document.all("film_err").src="images/img48_2.gif"
document.all("tb_play").style.display="none"
document.all("tb_down").style.display="none"
document.all("tb_fav").style.display="none"
document.all("tb_err").style.display="inline"
}
</script>
<table width="500" height="40" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><img border="0" src="images/img45_2.gif" class="img2" width="97" height="19" name="film_play" onclick="show_play();"><img border="0" src="images/img46.gif" class="img2" width="97" height="19" name="film_down" onclick="show_down();"><img border="0" src="images/img47.gif" class="img2" width="97" height="19" name="film_fav" onclick="show_fav();"><img src="images/img48.gif" name="film_err" width="97" height="19" border="0" class="img2" id="film_err" onclick="show_err();"></td>
</tr>
</table>
<table width="500" height="30" border="0" cellpadding="10" cellspacing="1" bgcolor="#E7E7E7" class="t6" id="tb_play">
<tr>
<td align="left" bgcolor="#F7F7F7"><%
set rs=server.createobject("adodb.recordset")
rs.open "select * from film_files where filmid="&request.querystring("id")&"",conn,1,1
if rs.eof then
%>
本片没有影片文件可以点播
<%
else
i=1
do while not rs.eof
%>
<a href="film_play.asp?id=<%=request.QueryString("id")%>&fileid=<%=rs("id")%>" class="f2" target="_blank">第<%if i<10 then%>0<%=i%><%else%><%=i%><%end if%>集</a>
<%
if i mod 9 then
response.write ""
else
response.write "<table width=500 height=5 border=0 cellpadding=0 cellspacing=0>"
response.write " <tr>"
response.write " <td></td>"
response.write " </tr>"
response.write "</table>"
end if
%>
<%
i=i+1
rs.movenext
loop
end if
rs.close
%></td>
</tr>
</table>
<table width="500" height="30" border="0" cellpadding="10" cellspacing="1" bgcolor="#E7E7E7" class="t6" id="tb_down" style="display:none">
<tr>
<td align="left" bgcolor="#F7F7F7"><%
set rs=server.createobject("adodb.recordset")
rs.open "select * from film_files where filmid="&request.querystring("id")&"",conn,1,1
if rs.eof then
%>
本片没有影片文件可以点播
<%
else
i=1
do while not rs.eof
%>
<a href="film_down.asp?id=<%=request.QueryString("id")%>&fileid=<%=rs("id")%>" class="f2" target="_blank">第<%if i<10 then%>0<%=i%><%else%><%=i%><%end if%>集</a>
<%if i mod 9 then
response.write ""
else
response.write "<table width=500 height=5 border=0 cellpadding=0 cellspacing=0>"
response.write " <tr>"
response.write " <td></td>"
response.write " </tr>"
response.write "</table>"
end if
%>
<%
i=i+1
rs.movenext
loop
end if
rs.close
%></td>
</tr>
</table>
<table width="500" height="30" border="0" cellpadding="10" cellspacing="1" bgcolor="#E7E7E7" id="tb_fav" style="display:none">
<%
set rs=server.createobject("adodb.recordset")
rs.open "select * from film_fav where film_id="&request.querystring("id")&"",conn,1,1
now_fav=rs.recordcount
rs.close
%>
<tr>
<td align="center" bgcolor="#F7F7F7">本片已经有<%=now_fav%>人收藏,您没有收藏本片,<a href="film_fav.asp?id=<%=request.querystring("id")%>" target="_blank" class="f2">点击此处将该片加入您的影片收藏</a></td>
</tr>
</table>
<table width="500" height="30" border="0" cellpadding="10" cellspacing="1" bgcolor="#E7E7E7" id="tb_err" style="display:none">
<form name="notify_err" method="post" target="_blank" action="notify_err.asp">
<tr>
<td align="center" bgcolor="#F7F7F7"><a href="online_help.asp#play_help" target="_blank" class="f2">请先点击此处查看播放帮助,如果播放帮助能解决您的问题,则请不要报告错误</a><br>
<br>
<select name="err_info" class="select1">
<option value="" selected>请选择您看到的错误提示</option>
<option value="影片不存在">提示:影片不存在</option>
<option value="路径不存在">提示:路径不存在</option>
<option value="路径变量不存在">提示:路径变量不存在</option>
<option value="影片文件不存在">提示:影片文件不存在</option>
<option value="其它未注明的错误">其它未注明的错误</option>
</select>
<input name="Submit" type="submit" class="button1" value="报告">
<input name="id" type="hidden" id="id" value="<%=request.querystring("id")%>"></td>
</tr>
</form>
</table>
<table width="500" height="30" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="left" class="f10"> 剧情简介:</td>
</tr>
</table>
<table width="500" height="1" border="0" cellpadding="0" cellspacing="0" class="t2">
<tr>
<td></td>
</tr>
</table>
<table width="500" border="0" cellspacing="0" cellpadding="10">
<tr>
<td><%=film_gut%></td>
</tr>
</table>
<table width="500" height="1" border="0" cellpadding="0" cellspacing="0" class="t2">
<tr>
<td></td>
</tr>
</table>
<table width="500" height="50" border="0" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
</table></td>
</tr>
</table>
<!--#include file="footer.asp"-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -