⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 upload.asp

📁 飞去小说网站源码1
💻 ASP
字号:
<!--#include file="../../Conn.asp"-->
<!--#include file="../../Inc/Admin_checkuser.asp"-->
<%
Call Admin_Check("上传图片","您是权限管理员且不具备上传权限,请联系管理员解决,不具备此功能")
%>
<html>
<head>
<title>上传文件</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
Body
{
background-position: center center;
font-size: 12px;
line-height: 20px;
color: #333333;
} 
a{font-style:normal;text-decoration:none;font-size:9pt;color:#000000;}
-->
</style>
<body leftmargin="0" topmargin="0" bgColor="#F1F3F5">
</head>
<script language="javascript">
<!--
function ShowProgress() {
	var ProgressID = (new Date()).getTime() % 1000000000;
	var Form = document.MyForm;
	Form.action = "ClsUpLoad.asp?t=<%=request("t")%>&ProgressID=" + ProgressID;
	if (Form.File1.value != "") {
		var Ver = navigator.appVersion;
		if (Ver.indexOf("MSIE") > -1 && Ver.substr(Ver.indexOf("MSIE") + 5, 1) > 4) {
			window.showModelessDialog("Loading.asp?Count=0&ProgressID=" + ProgressID, null, "dialogWidth=470px; dialogHeight:175px; help:no; status:no");
			//window.showModalDialog("Loading.asp?Count=0&ProgressID=" + ProgressID, null, "dialogWidth=470px; dialogHeight:175px; help:no; status:no");
		} 
		else 
		{
			window.open("Loading.asp?Count=0&ProgressID=" + ProgressID, "_blank", "left=240,top=240,width=470,height=175");
		}
		return true;
	} 
	else
	{
		return false;
	}
}
//-->
</script>
<body>
<form onsubmit="return ShowProgress();" action="ClsUpLoad.asp?t=<%=request("t")%>" enctype="multipart/form-data" method="post" name="MyForm">
<input type="file" name="File1" size="48"><input type="submit" name="Submit" value="上传">
</form>
</body>
</html>

⌨️ 快捷键说明

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