它的电影地址怎么可以用asp来实现啊?并且在media player播放器中右击属性看到也是'http://dengyun.cn/daolian.asp?id=5412' 这个地址,请问他这个是怎么实现的呀?
[此贴子已经被作者于2006-2-21 0:39:49编辑过]
[此贴子已经被作者于2006-2-21 0:39:49编辑过]
daolian.asp这里面应该怎么写才有用呢?假如电影地址是http://dengyun.cn/movie/01.wmv,怎样才能把该电影地址映射到SCR里呢?
[此贴子已经被作者于2006-2-21 15:35:54编辑过]
例如
<ASX version = "3.0">
<entry SKIPIFREF="YES">
<title>《恰似你的温柔(英文版)</title>
<ref href="http://www.cmonline.org.cn/BBS/images/upload2AS/Music/English/wma/200512/xsndwl243234.wma"/>
<param name="Album" value="xx音乐网"/>
<param name="Title" value="恰似你的温柔(英文版)"/>
</entry>
</ASX>
[此贴子已经被作者于2006-2-23 3:46:18编辑过]
<%
From_url = Cstr(Request.ServerVariables("HTTP_REFERER"))
Serv_url = Cstr(Request.ServerVariables("SERVER_NAME"))
if mid(From_url,8,len(Serv_url)) <> Serv_url and mid(From_url,8,len(Serv_url))<>"dengyun.cn" and mid(From_url,8,len(Serv_url))<>"*.dengyun.cn" then
response.write "你来自登云科技,请直接从主页下载,谢谢<br>" '防止盗链
response.write "<a href=http://dengyun.cn>登云科技http://dengyun.cn<;/a>" '防止盗链
response.end
'上面是防盗链的
'下面是你给的代码,只是给这些参数的双引号改成了单引号。
else
%>
<ASX version = "3.0">
<entry SKIPIFREF="YES">
<title>恰似你的温柔(英文版)</title>
<ref href="http://www.cmonline.org.cn/BBS/images/upload2AS/Music/English/wma/200512/xsndwl243234.wma"/>
<param name="Album" value="xx音乐网"/>
<param name="Title" value="恰似你的温柔(英文版)"/>
</entry>
</ASX>
<% end if %>
可以这样写的,不用Response.Write.
[此贴子已经被作者于2006-2-23 21:56:43编辑过]