📄 goldindex.asp
字号:
<!--#include file="articleconn.asp"-->
<!--#include file="head.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>七彩影院</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312"><LINK
href="../images/style.css" type=text/css rel=stylesheet>
<SCRIPT>
//加入页面保护
function rf()
{return false; }
document.oncontextmenu = rf
function keydown()
{if(event.ctrlKey ==true || event.keyCode ==93 || event.shiftKey ==true){return false;} }
document.onkeydown =keydown
function drag()
{return false;}
document.ondragstart=drag
function stopmouse(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
return false;
else if
(navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
return false;
}
return true;
}
document.onmousedown=stopmouse;
if (document.layers)
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=stopmouse;
</SCRIPT>
<%
MaxPerPage=10
dim totalPut
dim CurrentPage
dim TotalPages
dim i
dim ty
typeid=Replace(request("typeid"), "'", "''")
if not isempty(request("page")) then
currentPage=cint(request("page"))
else
currentPage=1
end if
dim rstype
dim typesql
dim types
if not isEmpty(Replace(request("typeid"), "'", "''")) then
typeid=Replace(request("typeid"), "'", "''")
else
typeid="全部"
end if
%>
<table width="778" height="2" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#B4D541">
<tr>
<td><img src="../images/spacer.gif" width="1" height="1"></td>
</tr>
</table>
<TABLE cellSpacing=0 cellPadding=0 width=778 align=center border=0>
<TR>
<TD vAlign=top align=middle width=162 bgColor=#EEFFAD>
<TABLE width=162 border=0 cellPadding=0 cellSpacing=0 bgcolor="#C3EF29">
<TR>
<TD><img src="../images/left_menu-01.gif" width="162" height="29"></TD>
</TR>
<TR>
<TD>
<!--#include file=user_login.asp-->
</TD>
</TR>
</TABLE>
<TABLE width=162 border=0 cellPadding=0 cellSpacing=0 bgcolor="#EEFFAD">
<TR>
<TD><img src="../images/leftservice.gif" width="162" height="29"></TD>
</TR>
<TR>
<TD><TABLE width="90%" border=0 align="center" cellPadding=0 cellSpacing=0>
<TR align=center>
<TD width="50%" height=16><a href="#" onclick="window.open('lookday01.asp','newdows','width=400,height=350,left=100,top=50,scrollbars=yes')" class="left">查询点数</a></TD>
<TD width="50%" height=16><a href="#" onclick="window.open('lookday.asp','newdows','width=400,height=350,left=100,top=50,scrollbars=yes')" class="left">查询天数</a>
</TD>
</TR>
<TR align=center>
<TD width="50%" height=16><a href="exitpwd.asp" class="left">取回密码</a></TD>
<TD width="50%" height=16><a href="chageusr.asp" class="left">修改资料</a></TD>
</TR>
<TR align=center>
<TD width="50%" height=16>
<a target="_blank" class="left">用户续费</a></TD>
<TD width="50%" height=16><a href="xfjl.asp" class="left">消费记录</a></TD>
</TR>
<TR align=center>
<TD width="50%" height=16><a target="_blank" href="/bbs" class="left">电影论坛</font></a></TD>
<TD width="50%" height=16><a href="czpt.asp" class="left">充值平台</a></TD>
</TR>
</TABLE></TD>
</TR>
</TABLE>
<TABLE width=162 border=0 cellPadding=0 cellSpacing=0 bgcolor="#C3EF29">
<form name="form2" method="post" action="search.asp" onsubmit="if (!checkinput()) return false;">
<script language="JavaScript">
<!--
function checkinput()
{
if (document.form2.keyword.value=="")
{
alert("请输入想查询的内容!");
document.form2.keyword.focus();
return false;
}
return true;
}
-->
</script>
<TR>
<TD height="24"><img src="../images/leftsearch.gif" width="162" height="29"></TD>
</TR>
<TR>
<TD align=middle><table width="100%" border="0" cellspacing="3">
<tr>
<td align="right"><font color="3B591B">选择类型:</font></td>
<td><font color="#FFFFFF">
<select name="typeid" size="1" class="button1" id="typeid">
<option value="片名">+电影名称+</option>
<option value="演员">+演员名称+</option>
</select>
</font></td>
</tr>
<tr>
<td align="right"><font color="3B591B">关 键 字:</font></td>
<td><font color="#FFFFFF">
<input name=keyword class="button2" onFocus="javascript:this.select();" value="" size="11">
</font></td>
</tr>
<tr align="center">
<td colspan="2"> <font color="#FFFFFF">
<input name="I1" type="submit" class="button1" value="影片搜索" onClick="if (search.keyword.value.length==0) {alert('请输入关键字!');return false;}" >
</font></td>
</tr>
</table></TD>
</TR>
</FORM>
</TABLE>
<TABLE width=162 border=0 cellPadding=0 cellSpacing=0 bgcolor="#EEFFAD">
<TR>
<TD><IMG height=29 src="../images/lefttopmedai.gif" width=162></TD>
</TR>
<TR>
<TD align="center"><table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="100%" id="AutoNumber6">
<%
dim t
t=0
sql="select articleid,title,typeid,dateandtime,best from learning order by articleid desc"
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
do while not rs.eof
t=t+1
%>
<tr>
<td width="60%" height="18"> <a href="../html/<%=rs("articleid")%>.html" target="_blank" class="left"><%content=rs("title")
if len(content)>6 then content=left(content,6)&"…"
response.write content
%></a>
</td>
<td width="40%"><font color="3B591B"><%=rs("dateandtime")%></font></td>
</tr>
<%
if t>=10 then exit do
rs.movenext
loop
%>
</table></TD>
</TR>
</TABLE> <TABLE width=162 border=0 cellPadding=0 cellSpacing=0 bgcolor="#EEFFAD">
<TR>
<TD><IMG height=29 src="../images/lefttophits.gif" width=162></TD>
</TR>
<TR>
<TD align="center"><table border="0" cellpadding="0" cellspacing="0" width="100%">
<%
Set rst= Server.CreateObject("ADODB.Recordset")
rst.open "select articleid,title,hits from learning order by hits desc",conn,1,1
%>
<%
i=0
do while not rst.eof
i=i+1
%>
<tr>
<td width="112" height="18"> <a href="../html/<%=rst("articleid")%>.html" target="_blank" class="left"><%content=rst("title")
if len(content)>7 then content=left(content,7)&"…"
response.write content
%></a></td>
<td width="30"><font color="3B591B"><%=rst("hits")%></font> </td>
</tr>
<%
if i>=10 then exit do
rst.movenext
loop
rst.close
set rst=nothing
%>
</table></TD>
</TR>
</TABLE> <TABLE width=162 border=0 cellPadding=0 cellSpacing=0 bgcolor="#EEFFAD">
<TR>
<TD><IMG height=29 src="../images/leftsoft.gif" width=162></TD>
</TR>
<TR>
<TD>
<TABLE cellSpacing=3 cellPadding=2 width="100%" border=0>
<TR>
<TD align=center>
<a target="_blank" href="http://vod.my0816.com/vodb/software/realoneplayer.rar"><img src="../images/realone.gif"
width=88 height=31 border="0"></a></TD>
</TR>
<TR>
<TD align=center><a href="/Downloads/fg140.exe" target="_blank"><img src="../images/flashget.gif" width="88" height="31" border="0"></a></TD>
</TR>
</TABLE></TD>
</TR>
</TABLE>
</TD>
<TD align=middle vAlign=top bgcolor="#FFFFFF">
<table width="100%" border="0" cellpadding="0" cellspacing="0" background="../images/inchelp-04.gif">
<tr>
<td width="35" background="../images/inchelp-04.gif"><img src="../images/inchelp-05.gif" width="27" height="29"></td>
<td background="../images/inchelp-04.gif">
<marquee class= behavior=scoll width=175 scrollDelay=2 scrollAmount=1 onmouseover=this.stop(); onmouseout=this.start();> <script src="../js/jstopgd.asp" ></script></marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</marquee>
</td>
<td width="17"><img src="../images/inchelp-01.gif" width="18" height="29"></td>
<td width="55" align="center" background="../images/inchelp-06.gif" ><a href="reghelp.asp" class="left">
<font color="#FF0000">付费帮助</font></a></td>
<td width="27"><img src="../images/inchelp-02.gif" width="27" height="29"></td>
<td width="55" align="center" background="../images/inchelp-06.gif" ><a href="playhelp.asp" class="left">播放帮助</a></td>
<td width="27"><img src="../images/inchelp-02.gif" width="27" height="29"></td>
<td width="55" align="center" background="../images/inchelp-06.gif" ><a href="downhelp.asp" class="left">下载帮助</a></td>
<td width="27"><img src="../images/inchelp-02.gif" width="27" height="29"></td>
<td width="55" align="center" background="../images/inchelp-06.gif" > <a class="left" target="_blank" href="../bbs">本站论坛</a></td>
<td width="27"><img src="../images/inchelp-02.gif" width="27" height="29"></td>
<td width="55" align="center" background="../images/inchelp-06.gif" ><a href="reguser.asp" class="left">注册会员</a></td>
<td width="14"><img src="../images/inchelp-03.gif" width="14" height="29"></td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="110" valign="top" background="../images/ggleft.jpg" > </td>
<td background="../images/ggbg.jpg" > <table width="100%" border="0">
<tr>
<td valign="top"><font color="#3B591B">
<%set rs1=server.createobject("adodb.recordset")
sql="select * from talk where id=23"
rs1.open sql,conn,1,3
talk=rs1("talk")
rs1.close
set rs1=nothing%><%=talk%></font>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -