指引网

当前位置: 主页 > 编程开发 > ASP >

asp取得flash高与宽

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:43
[摘要] 指引教程为您提供asp取得flash高与宽等资源,欢迎您收藏本站,我们将为您提供最新的asp取得flash高与宽资源
<script>ec(2);</script>

asp取得flash高与宽

Function GetFlashAndPic(url,height,width)
 Dim sExtName,ExtName,strTemp
 sExtName = Split(url, ".")
 ExtName = sExtName(UBound(sExtName))
 If LCase(ExtName) = "swf" Then
  strTemp = "<embed src=""" & url & """ width=" & width & " height=" & height & ">"
 Else
  strTemp = "<img src=""" & url & """ width=" & width & " height=" & height & " border=0>"
 End If
 GetFlashAndPic = strTemp
End Function

------分隔线----------------------------