focusload.asp
来自「管理登录system 管理员:admin 密码:admin888 数据」· ASP 代码 · 共 46 行
ASP
46 行
<%
Set Rs=server.CreateObject("adodb.recordset")
Rs.open "select top 1 Width,Height from Nweb_Ads where Putout=True order by id desc",Conn,1,1
If Rs.eof then response.end
Width=Rs("Width")
Height=Rs("Height")
Rs.close
Set Rs=nothing
%>
<HTML>
<HEAD>
<TITLE></TITLE>
<META http-equiv="Content-Type" content="text/html; charset=gb2312">
<META NAME="copyright" CONTENT="Copyright 2004-2005 - NWEB.CN-STUDIO-多来米">
<META NAME="Author" CONTENT="万博网络技术工作室,www.Nweb.cn">
<link href="Images/CSS.css" type=text/css rel=stylesheet>
<script>
function openwin()
{window.open("FocusView.asp","<%=AdsTitle%>","width=<%=Width%>,height=<%=Height%>")}
function get_cookie(Name)
{var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset,end))
}
}
return returnvalue;
}
function loadpopup(){
if (get_cookie('popped')==''){
openwin()
document.cookie="popped=yes"
}
}
</script>
</HEAD>
<BODY onload="openwin()">
</BODY>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?