SelectPic.asp
资源名称:eat.rar [点击查看]
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:3k
源码类别:
数据库编程
开发平台:
ASP/ASPX
- <% Option Explicit %>
- <!--#include file="../../../FS_Inc/Const.asp" -->
- <!--#include file="../../../FS_Inc/Function.asp"-->
- <!--#include file="../../../FS_InterFace/MF_Function.asp" -->
- <!--#include file="../../../FS_InterFace/NS_Function.asp" -->
- <%
- Dim Conn
- Dim TypeSql,RsTypeObj,LableSql,RsLableObj
- MF_Default_Conn
- Dim LimitUpFileFlag,CurrPath,ShowVirtualPath
- LimitUpFileFlag = Request("LimitUpFileFlag")
- CurrPath = Request("CurrPath")
- ShowVirtualPath = Request("ShowVirtualPath")
- Session("TempPicDir")=CurrPath
- 'if SysRootDir<>"" then CurrPath="/" & SysRootdir & CurrPath else CurrPath=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>
- <SCRIPT language="JavaScript" src="../js/Public.js"></SCRIPT>
- <BODY leftmargin="0" topmargin="0">
- <TABLE width="99%" border="0" align="center" cellpadding="1" cellspacing="0">
- <TR>
- <TD height="25"><SELECT onChange="ChangeFolder(this.value);" id="FolderSelectList" style="width:100%;" name="select">
- <OPTION selected value="<% = CurrPath %>"><% = CurrPath %></OPTION>
- </SELECT></TD>
- <TD rowspan="2" align="center" valign="middle"><IFRAME id="PreviewArea" width="100%" height="315" frameborder="1" src="PreviewImage.asp"></IFRAME></TD>
- </TR>
- <TR>
- <TD width="70%" align="center"> <IFRAME id="FolderList" width="100%" height="290" frameborder="1" src="FolderImageList.asp?CurrPath=<% = CurrPath %>&ShowVirtualPath=<% = ShowVirtualPath %>"></IFRAME></TD>
- </TR>
- <TR>
- <TD height="10" colspan="2">
- <TABLE width="100%" height="20" border="0" cellpadding="0" cellspacing="0">
- <TR>
- <TD width="80" height="10"> <DIV align="center">Url地址</DIV></TD>
- <TD><INPUT style="width:40%" type="text" name="UserUrl" id="UserUrl">
- <INPUT type="button" onClick="SetUserUrl();" name="Submit" value=" 确 定 ">
- <INPUT type="button" onClick="UpFileo();" name="Submit" value=" 上 传 " <%if not MF_Check_Pop_TF("MF025") then Response.Write"disabled"%>>
- <INPUT onClick="window.close();" type="button" name="Submit" value=" 取 消 ">
- </TD>
- </TR>
- <TR>
- <TD height="10" colspan="2" align="center"><span class="tx">在空白处点鼠标右键可以进行文件类操作,双击文件选择</span></TD>
- </TR>
- </TABLE></TD>
- </TR>
- </TABLE>
- </BODY>
- </HTML>
- <SCRIPT language="JavaScript">
- function ChangeFolder(FolderName)
- {
- frames["FolderList"].location='FolderImageList.asp?CurrPath='+FolderName;
- }
- function UpFileo()
- {
- OpenWindow('Frame.asp?FileName=UpFileForm.asp&Path='+frames["FolderList"].CurrPath,350,170,window);
- frames["FolderList"].location='FolderImageList.asp?CurrPath='+frames["FolderList"].CurrPath;
- }
- function SetUserUrl()
- {
- if (document.all.UserUrl.value=='') alert('请填写Url地址');
- else
- {
- window.returnValue=document.all.UserUrl.value;
- window.close();
- }
- }
- window.onunload=CheckReturnValue;
- function CheckReturnValue()
- {
- if (typeof(window.returnValue)!='string') window.returnValue='';
- }
- function OpenWindow(Url,Width,Height,WindowObj)
- {
- var ReturnStr=showModalDialog(Url,WindowObj,'dialogWidth:'+Width+'pt;dialogHeight:'+Height+'pt;status:no;help:no;scroll:no;');
- return ReturnStr;
- }
- </SCRIPT>