photoview.asp

来自「本同学录系统演示地址: http://class.19870123.cn/ 」· ASP 代码 · 共 25 行

ASP
25
字号
<!--#include File="../conndb.asp"-->
<!--#include file="../class/Photo.asp"-->
<html>
<head>
<title>设置图片</title>
</head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<%
  pid = CLng(Request("pid"))
  imgurl = Request("imgurl")
  set obj = new Photo
  obj.add_viewcount(pid)
  set obj = Nothing
%>
<script language="javascript">
  // 刷新照片列表,显示更新的浏览数量
  opener.location.reload();
</script>
<%
  Response.Redirect(imgurl)
%>
<body>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?