服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP教程 - asp 实现视频显示的效果函数

asp 实现视频显示的效果函数

2019-10-12 10:42阿里西西 ASP教程

asp 实现视频显示的效果函数

  1. <%  
  2. '******************************  
  3. '函数:SelPlay(strUrl,strWidth,StrHeight)  
  4. '参数:strUrl,动画视频路径;strWidth,视频高度;StrHeight,视频高度  
  5. '作者:阿里西西  
  6. '日期:2007/7/13  
  7. '描述:取得用户真实IP,对代理地址仍然有效;返回值:文本类型的IP地址  
  8. '示例:<%=SelPlay("mov.swf","120","90")%>  
  9. '******************************  
  10. Sub SelPlay(strUrl,strWidth,StrHeight)  
  11. Dim Exts,isExt  
  12. If strUrl <> "" Then  
  13.    isExt = LCase(Mid(strUrl,InStrRev(strUrl, ".")+1))  
  14. Else  
  15.    isExt = ""  
  16. End If  
  17. Exts = "avi,wmv,asf,mov,rm,ra,ram,swf"  
  18. If Instr(Exts,isExt)=0 Then  
  19.  Response.write "非法视频文件"  
  20. Else  
  21.  Select Case isExt  
  22.   Case "avi","wmv","asf","mov"  
  23.    Response.write "<EMBED id=MediaPlayer src="&strUrl&" width="&strWidth&" height="&strHeight&" loop=""false"" autostart=""true""></EMBED>"  
  24.   Case "mov","rm","ra","ram"  
  25.    Response.Write "<OBJECT height="&strHeight&" width="&strWidth&" classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA>"  
  26.    Response.Write "<PARAM NAME=""_ExtentX"" VALUE=""12700"">"  
  27.    Response.Write "<PARAM NAME=""_ExtentY"" VALUE=""9525"">"  
  28.    Response.Write "<PARAM NAME=""AUTOSTART"" VALUE=""-1"">"  
  29.    Response.Write "<PARAM NAME=""SHUFFLE"" VALUE=""0"">"  
  30.    Response.Write "<PARAM NAME=""PREFETCH"" VALUE=""0"">"  
  31.    Response.Write "<PARAM NAME=""NOLABELS"" VALUE=""0"">"  
  32.    Response.Write "<PARAM NAME=""SRC"" VALUE="""&strUrl&""">"  
  33.    Response.Write "<PARAM NAME=""CONTROLS"" VALUE=""ImageWindow"">"  
  34.    Response.Write "<PARAM NAME=""CONSOLE"" VALUE=""Clip"">"  
  35.    Response.Write "<PARAM NAME=""LOOP"" VALUE=""0"">"  
  36.    Response.Write "<PARAM NAME=""NUMLOOP"" VALUE=""0"">"  
  37.    Response.Write "<PARAM NAME=""CENTER"" VALUE=""0"">"  
  38.    Response.Write "<PARAM NAME=""MAINTAINASPECT"" VALUE=""0"">"  
  39.    Response.Write "<PARAM NAME=""BACKGROUNDCOLOR"" VALUE=""#000000"">"  
  40.    Response.Write "</OBJECT>"  
  41.    Response.Write "<BR>"  
  42.    Response.Write "<OBJECT height=32 width="&strWidth&" classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA>"  
  43.    Response.Write "<PARAM NAME=""_ExtentX"" VALUE=""12700"">"  
  44.    Response.Write "<PARAM NAME=""_ExtentY"" VALUE=""847"">"  
  45.    Response.Write "<PARAM NAME=""AUTOSTART"" VALUE=""0"">"  
  46.    Response.Write "<PARAM NAME=""SHUFFLE"" VALUE=""0"">"  
  47.    Response.Write "<PARAM NAME=""PREFETCH"" VALUE=""0"">"  
  48.    Response.Write "<PARAM NAME=""NOLABELS"" VALUE=""0"">"  
  49.    Response.Write "<PARAM NAME=""CONTROLS"" VALUE=""ControlPanel,StatusBar"">"  
  50.    Response.Write "<PARAM NAME=""CONSOLE"" VALUE=""Clip"">"  
  51.    Response.Write "<PARAM NAME=""LOOP"" VALUE=""0"">"  
  52.    Response.Write "<PARAM NAME=""NUMLOOP"" VALUE=""0"">"  
  53.    Response.Write "<PARAM NAME=""CENTER"" VALUE=""0"">"  
  54.    Response.Write "<PARAM NAME=""MAINTAINASPECT"" VALUE=""0"">"  
  55.    Response.Write "<PARAM NAME=""BACKGROUNDCOLOR"" VALUE=""#000000"">"  
  56.    Response.Write "</OBJECT>"  
  57.   Case "swf"  
  58.    Response.Write "<embed src="""&strUrl&""" width="""&strWidth&""" height="""&strHeight&""" type=""application/x-shockwave-flash"" play=""true"" loop=""true"" menu=""true""></embed>"  
  59.   Case else  
  60.    Response.Write "<img src=""/IMages/NoDV.JPG"" />"  
  61.  End Select  
  62. End If  
  63. End Sub  
  64. %> 

延伸 · 阅读

精彩推荐