📄 admin_common.asp
字号:
<!--#include file="../conn.asp"-->
<link rel="stylesheet" type="text/css" href="lib/admin_css.css">
<%Session.CodePage="65001"%>
<%
if(Session("admin") == undefined || Session("admin")==false)
{
Response.Redirect("Admin_login.asp")
}
%>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script language="jscript">
function openWindow2(url)
{
popupWin = window.open(url,'new_page','width=500,height=220');
}
function openWin(url,fea,abc)
{
popupWin = window.open(url,fea,abc);
}
function openPopup(url)
{
popupWin = window.open(url,"ProductDetail","width=620,height=500,scrollbars=yes");
var posx = (screen.availWidth-620)/2;
var posy = (screen.availHeight-500)/2;
popupWin.moveTo(posx,posy);
}
///////////////////////////////////////////////////////////////////////////////////
function change()
{
window.document.frmlist.submit();
}
//////////////////////////////////////////////////////////////////////////////////////////////////
function askq(strMess,strUrl)
{
var yn;
yn = confirm(strMess);
if (yn)
{
document.location.href = strUrl;
}
}
</script>
<!----------------------------------------------------------------------->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -