商城后台两个小问题修正
作者:cmscn 日期:2010-05-07
FLASH轮替图片滚动直接调用
作者:cmscn 日期:2010-01-26
如何直接引用优酷视频去除广告的方法
作者:cmscn 日期:2009-12-20
在WordPress等,站外引用优酷视频时,点"全屏"会跳转到优酷的网站,而且播放时,放鼠标在视频的画面上,会显示广告...
站外引用优酷视频全屏以及去掉广告 办法如下:
在引用时,把优酷的flash地址,替换下边的代码中绿色部分
<embed type="application/x-shockwave-flash"src="视频flash地址"d="movie_player"name="movie_player"bgcolor="#000000"quality="high"allowfullscreen="true"flashvars="isShowRelatedVideo=false&showAd=0&show_pre=1&show_next=1&isAutoPlay=false&isDebug=false&UserID=&winType=interior&playMovie=true&MMControl=false&MMout=false&RecordCode=1001,1002,1003,1004,1005,1006,2001,3001,3002,3003,3004,3005,3007,3008,9999"pluginspage="http://www.macromedia.com/go/getflashplayer"width="480"height="400"></embed>
站外引用优酷视频全屏以及去掉广告 办法如下:
在引用时,把优酷的flash地址,替换下边的代码中绿色部分
<embed type="application/x-shockwave-flash"src="视频flash地址"d="movie_player"name="movie_player"bgcolor="#000000"quality="high"allowfullscreen="true"flashvars="isShowRelatedVideo=false&showAd=0&show_pre=1&show_next=1&isAutoPlay=false&isDebug=false&UserID=&winType=interior&playMovie=true&MMControl=false&MMout=false&RecordCode=1001,1002,1003,1004,1005,1006,2001,3001,3002,3003,3004,3005,3007,3008,9999"pluginspage="http://www.macromedia.com/go/getflashplayer"width="480"height="400"></embed>
Tags: 优酷
论坛批处理设置隐藏、只读、发表
作者:cmscn 日期:2009-12-06
相册分页
作者:cmscn 日期:2009-09-13
博客发表排行
作者:cmscn 日期:2009-09-02
<table border=0 width='100%'>
<%
sql="select top 5 author,count(id) as num from blog_data group by author order by count(1) desc,author"
set rs=joekoe_cms.exec(sql,1)
do while not rs.eof
response.write vbcrlf&" <tr><td>"&rs("author")&"</a> ("&rs("num")&")</td></tr>"