求高手给解释一段asp代码,如下:
里面那些name的值都不知道代表的什么意思,strurl是指的数据库里的字段吗?
那么Call SelPlay("video/3D_1.wmv",280,220)已经有路径了,为何还要在前面设置放?两者有何不同?
最好是详细一点,本人新手,谢谢!!~~
另外如果我想把播放器中的前进后退按钮和播放进度条去掉,应该怎么改?
<%
Sub SelPlay(strUrl,strWidth,StrHeight) 'strurl视频文件的路径,strwidth 宽度,strheight 高度
Dim Exts,isExt
If strUrl <> "" Then
isExt = LCase(Mid(strUrl,InStrRev(strUrl, ".")+1))
Else
isExt = ""
End If
Exts = "avi,wmv,asf,mov,rm,ra,ram"
If Instr(Exts,isExt)=0 Then
Response.write "非法视频文件"
Else
Select Case isExt
Case "avi","wmv","asf","mov"
Response.write " <EMBED id=MediaPlayer src="&strUrl&" width="&strWidth&" height="&strHeight&" loop=""false"" autostart=""true""> </EMBED>"
Case "mov","rm","ra","ram"
Response.Write " <OBJECT height="&strHeight&" width="&strWidth&" classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFB