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

📄 selecttemplet.asp

📁 后台目录:qwbAdmin/Login.asp 登陆用户名:admin 登陆密码:admin
💻 ASP
字号:
<% Option Explicit %>
<!--#include file="../../../FS_Inc/Const.asp" -->
<!--#include file="../../../FS_Inc/Function.asp"-->
<!--#include file="../../../FS_InterFace/MF_Function.asp" -->
<%
Dim Conn
MF_Default_Conn
MF_Session_TF
Dim CurrPath
CurrPath = Request("CurrPath")
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>选择文件</title>
<link href="../../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr> 
    <td><select onChange="ChangeFolder(this.value);" id="FolderSelectList" style="width:100%;" name="select">
        <option selected value="<% = CurrPath %>"><% = CurrPath %></option>
      </select></td>
  </tr>
  <tr> 
    <td width="70%"> <iframe id="FolderList" width="100%" height="300" frameborder="1" src="FolderList.asp?CurrPath=<% = CurrPath %>"></iframe></td>
  </tr>
  <tr> 
    <td height="35"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
        <tr> 
          <td height="30" align="center"> 
            <input type="button" onClick="SelectFile();" name="Submit" value=" 选择选定的文件 "> 
          </td>
          <td align="center"> 
            <input onClick="window.close();" type="button" name="Submit3" value=" 取 消 "></td>
        </tr>
      </table></td>
  </tr>
</table>
</body>
</html>
<script language="JavaScript">
var SysRootDir='<% = G_VIRTUAL_ROOT_DIR %>';
function ChangeFolder(FolderName)
{
	frames["FolderList"].location='FolderList.asp?CurrPath='+FolderName;
}
function SelectFile()
{
	if (frames["FolderList"].FileName!='')
	{
		var PathInfo='',TempPath='';
		if (SysRootDir!='')
		{
			TempPath=frames["FolderList"].CurrPath;
			PathInfo=TempPath.substr(TempPath.indexOf(SysRootDir)+SysRootDir.length);
		}
		else
		{
			PathInfo=frames["FolderList"].CurrPath;
		}
		window.returnValue=PathInfo+'/'+frames["FolderList"].FileName;
		window.close();
	}
	else
		alert('请选择选择文件');
}
window.onunload=SetReturnValue;
function SetReturnValue()
{
	if (typeof(window.returnValue)!='string') window.returnValue='007007007007';
}
</script>

⌨️ 快捷键说明

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