-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideolist.asp
58 lines (55 loc) · 2.55 KB
/
videolist.asp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!--#include file="config/config.asp"-->
<!--#include file="config/function.asp"-->
<!--#include file="config/topweb.asp"-->
<%
dim operate,id,sql,i
operate=safeInstr(request.QueryString("operate"))
id=request.QueryString("id")
if operate<>"video" or id="" then
response.End()
else
id=safeRequest(id)
DBopen("record/#step.mdb")
call config()
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><%=valueArray(2)%></title>
<meta name="keywords" content="<%=valueArray(5)%>" />
<meta name="description" content="<%=valueArray(6)%>"/>
<link href="css/import.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="layout">
<div id="topbody">网站名称:<%=valueArray(1)%> <a href="javascript:viod(0);" onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('<%=valueArray(4)%>');return false;">设为首页</a><strong>|</strong><a href="javascript:window.external.Addfavorite('<%=valueArray(4)%>')">加入收藏</a></div>
<!--end topbody-->
<div id="mainbody">
<div id="navd">
<div id="logo"><a href="<%=valueArray(4)%>" target="_self"><img src="<%=valueArray(3)%>" width="200" height="100" style="border:0px"/></a></div>
<div id="link"><a href="index.asp">[首页]</a> <a href="aboutme.asp" target="_self">[那些年的我]</a> <a href="mydiary.asp" target="_self">[那些年的日记]</a> <a href="myphoto.asp" target="_self">[那些年的相片]</a> <a href="myvideo.asp" target="_self">[那些年的影像]</a> <a href="contact.asp" target="_self">[联系我]</a> </div></div>
<!--end navd-->
<div id="video-list">
<span class="titleimg"><img src="images/myvideo.png" width="160" height="35" /></span><span id="localbg" class="localtion-nav">当前位置:首页->那些年的影像->视频列表</span>
<div id="video-list-content">
<ul>
<%call videoList()%>
</ul>
</div>
<!--end video-list-content-->
<div id="page"><%writePage(Url_address("page"))%></div>
</div>
<!--end video-list-->
</div>
<!--end mainbody-->
<div id="footbody">
<span class="copyright">©</span> <%=valueArray(1)%>|<%=valueArray(7)%><br/> |<a href="description.html" target="_blank">网站声明</a>|<a href="contact.asp" target="_blank">联系我</a>| </div>
<!--end footbody-->
</div>
<!--end layout-->
</body>
</html>
<%DBclose()
end if
%>