www.gusucode.com > 中网景企业网站源码时尚版 2009.73码程序 > admin/editor_InsertMedia.asp

    <%@language=vbscript codepage=936 %>
<%

response.buffer=true	
'强制浏览器重新访问服务器下载页面,而不是从缓存读取页面
Response.Buffer = True 
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1 
Response.Expires = 0 
Response.CacheControl = "no-cache" 
%>
<HTML><HEAD><TITLE>插入视频文件</TITLE>
<link rel="stylesheet" type="text/css" href="editor_dialog.css">
<script language="JavaScript">
function OK(){
  var str1="";
  var strurl=document.form1.url.value;
  if (strurl==""||strurl=="http://")
  {
  	alert("请先输入视频文件地址,或者上传视频文件!");
	document.form1.url.focus();
	return false;
  }
  else
  {
    str1="<embed src="+document.form1.url.value+" width="+document.form1.width.value+" height="+document.form1.height.value+"></embed>"
    window.returnValue = str1+"$$$"+document.form1.UpFileName.value;
    window.close();
  }
}
function IsDigit()
{
  return ((event.keyCode >= 48) && (event.keyCode <= 57));
}
</script>
</head>
<BODY bgColor=menu topmargin=15 leftmargin=15 >
<form name="form1" method="post" action="">
<table width=100% border="0" cellpadding="0" cellspacing="2">
  <tr><td>
<FIELDSET align=left>
<LEGEND align=left>视频文件参数</LEGEND>
<TABLE border="0" cellpadding="0" cellspacing="3">
<TR><TD >地址:<INPUT name="url" id=url  value="http://" size=40>
	</td>
</TR>
<TR><TD >宽度:<INPUT name="width" id=width  ONKEYPRESS="event.returnValue=IsDigit();" value=352 size=7 maxlength="4"> 
&nbsp;&nbsp;高度:<INPUT id=height ONKEYPRESS="event.returnValue=IsDigit();" value=288 size=7 maxlength="4"></TD></TR>
<TR><TD align=center>支持格式为:avi、wmv、mpg、asf</TD></TR>
 </TABLE></fieldset></td><td width=80 align="center"><input name="cmdOK" type="button" id="cmdOK" value="  确定  " onClick="OK();">
   <br>
   <br>   <input name="cmdCancel" type=button id="cmdCancel" onclick="window.close();" value='  取消  '></td></tr>
   <tr>
    <td>
<FIELDSET align=left>
<LEGEND align=left>上传本地视频文件</LEGEND>
<iframe class="TBGen" style="top:2px" ID="UploadFiles" src="editor_Upload_Dialog.asp?DialogType=media" frameborder=0 scrolling=no width="350" height="25"></iframe>
</fieldset>
	</td>
    <td width=80 align="center"><input name="UpFileName" type="hidden" id="UpFileName" value="None"></td>
   </tr>
</table>
</form>
</body>
</html>