| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 | <?phpif(!defined('InEmpireCMS')){	exit();}?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html>	<head>		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">		<title>上传Flash</title>		<link type="text/css" href="images/editorpage.css" rel=stylesheet>		<script>		function EcmsEditorReturnDoAction2(str){			window.parent.EHEcmsEditorDoTranFlash(str);			self.location.href=self.location.href;		}		</script>		<script type="text/javascript">		function DoCheckTranFile(obj){			var ctypes,actypes,cfiletype,sfile,sfocus;			ctypes="<?=$ecms_config['sets']['tranflashtype']?>";			actypes="<?=$public_r['filetype']?>";			if(obj.tranurl.value==''&&obj.file.value=='')			{				alert('请选择要上传的FLASH');				obj.file.focus();				return false;			}			if(obj.file.value!='')			{				sfile=obj.file.value;				sfocus=0;			}			else			{				sfile=obj.tranurl.value;				sfocus=1;			}			cfiletype=','+ToGetFiletype(sfile)+',';			if(ctypes.indexOf(cfiletype)==-1)			{				alert('文件扩展名错误');				if(sfocus==1)				{					obj.tranurl.focus();				}				else				{					obj.file.focus();				}				return false;			}			cfiletype='|'+ToGetFiletype(sfile)+'|';			if(actypes.indexOf(cfiletype)==-1)			{				alert('文件扩展名不在允许的范围内');				if(sfocus==1)				{					obj.tranurl.focus();				}				else				{					obj.file.focus();				}				return false;			}			ReturnFileNo(obj);			return true;		}		function ToGetFiletype(sfile){			var filetype,s;			s=sfile.lastIndexOf(".");			filetype=sfile.substring(s+1).toLowerCase();			return '.'+filetype;		}		//返回编号		function ExpStr(str,exp){			var pos,len,ext;			pos=str.lastIndexOf(exp)+1;			len=str.length;			ext=str.substring(pos,len);			return ext;		}		function ReturnFileNo(obj){			var filename,str,exp;			if(obj.no.value!='')			{				return '';			}			if(obj.file.value!='')			{				str=obj.file.value;			}			else			{				str=obj.tranurl.value;			}			if(str.indexOf("\\")>=0)			{				exp="\\";			}			else			{				exp="/";			}			filename=ExpStr(str,exp);			obj.no.value=filename;		}		</script>	</head>	<body scroll="no" style="OVERFLOW: hidden" topmargin="0">		   <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" id="tranpictb">    <form id="TranFlashFormT" name="TranFlashFormT" method="post" target="eeditoruploadflash<?=$ecms_topager['InstanceId']?>" enctype="multipart/form-data" action="../ecmseditor.php" onsubmit="return DoCheckTranFile(TranFlashFormT);">	<?=$ecms_hashur['form']?>      <input type=hidden name=classid value="<?=$ecms_topager['classid']?>">      <input type=hidden name=filepass value="<?=$ecms_topager['filepass']?>">	  <input type=hidden name=infoid value="<?=$ecms_topager['infoid']?>">      <input type=hidden name=modtype value="<?=$ecms_topager['modtype']?>">      <input type=hidden name=sinfo value="<?=$ecms_topager['sinfo']?>">      <input type=hidden name=enews value="TranFile">      <input type=hidden name=type value="2">      <input type=hidden name=doing value="0">      <input type=hidden name=tranfrom value="1">      <input type=hidden name=InstanceName value="<?=$ecms_topager['InstanceName']?>">	  <input type=hidden name=InstanceId value="<?=$ecms_topager['InstanceId']?>">	  <input type=hidden name=doecmspage id=doecmspage value="<?=$doecmspage?>">      <tr>         <td><strong>远程保存</strong><br>         <input name="tranurl" type="text" id="tranurl" size="32" style="width: 100%"></td>      </tr>      <tr>         <td><strong>本地上传</strong><br>           <input type="file" name="file" id="file" style="width: 100%">         </td>      </tr>      <tr>         <td><strong>文件别名</strong><br>           <input name="no" type="text" id="no" value="<?=$ecms_topager['fileno']?>" style="width: 100%">         </td>      </tr>      <tr>         <td height="30"> <input type="submit" name="Submit2" value="发送到服务器上">         </td>      </tr>    </form>  </table>  <iframe name="eeditoruploadflash<?=$ecms_topager['InstanceId']?>" id="eeditoruploadflash<?=$ecms_topager['InstanceId']?>" style="display:none" src="images/blank.html"></iframe>  	</body></html>
 |