Tuesday, July 31, 2007

 

解决网易相册不能外链的问题

From:

http://girles.blog.hexun.com/10559316_d.html
http://hi.baidu.com/quinren/blog/item/48a15860434969dd8cb10d10.html

很多人都在用网易相册(http://photo.163.com),因为网易相册具有容量大,传输速度快等特点。但是,令我们困惑的是,网易相册里的照片是不能外链。也就是说,我们不能在自己的新浪博客,百度博客,以及一些其他非网易旗下的论坛,留言板等链接照片。

偶然发现一个网友解决了这个问题。举例说明具体的使用方法

1、大家先看一下我的网易相册里的一张照片,照片地址是:http://img319.photo.163.com/quin8411/4537046/1073645468.jpg

在我的百度博客里直接链接后,效果如下:

但是,我们将此图片的地址稍加处理,就是在地址前面加上以下代码:
http://www.142857.org/pic.php?url=
(或者 http://xiez.cn/cwin/get163.asp?url=)

原来图片地址变成:http://www.142857.org/pic.php?url=http://img319.photo.163.com/quin8411/4537046/1073645468.jpg
然后用以上这个全新的图片地址进行链接,效果如下:
OK 了!
那么,对于熟悉网页设计的朋友一定要问,http://www.142857.org/pic.php? 这个网页的代码到底是什么呢?

asp源码如下
0 && image.height>0){if(image.width>=510){this.width=510;this.height=image.height*510/image.width;}}" style="margin: 0px 2px -3px 0px;" alt="引用内容" src="http://xiez.cn/images/quote.gif" twffan="done"> 引用内容
<%

Dim url, body, myCache

url = Request.QueryString("url")

Set myCache = new cache
myCache.name = "picindex"&url
If myCache.valid Then
body = myCache.value
Else
body = GetWebData(url)
myCache.add body,dateadd("d",1,now)
End If

If Err.Number = 0 Then
Response.CharSet = "UTF-8"
Response.ContentType = "application/octet-stream"
Response.BinaryWrite body
Response.Flush
Else
Wscript.Echo Err.Description
End if

'取得数据
Public Function GetWebData(ByVal strUrl)
Dim curlpath
curlpath = Mid(strUrl,1,Instr(8,strUrl,"/"))
Dim Retrieval
Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", strUrl, False,"",""
.setRequestHeader "Referer", curlpath
.Send
GetWebData =.ResponseBody
End With
Set Retrieval = Nothing
End Function


'cache类

class Cache
private obj 'cache内容
private expireTime '过期时间
private expireTimeName '过期时间application名
private cacheName 'cache内容application名
private path 'url

private sub class_initialize()
path=request.servervariables("url")
path=left(path,instrRev(path,"/"))
end sub

private sub class_terminate()
end sub

public property get blEmpty
'是否为空
if isempty(obj) then
blEmpty=true
else
blEmpty=false
end if
end property

public property get valid
'是否可用(过期)
if isempty(obj) or not isDate(expireTime) then
valid=false
elseif CDate(expireTime)valid=false
else
valid=true
end if
end property

public property let name(str)
'设置cache名
cacheName=str & path
obj=application(cacheName)
expireTimeName=str & "expires" & path
expireTime=application(expireTimeName)
end property

public property let expires(tm)
'重设置过期时间
expireTime=tm
application.lock
application(expireTimeName)=expireTime
application.unlock
end property

public sub add(var,expire)
'赋值
if isempty(var) or not isDate(expire) then
exit sub
end if
obj=var
expireTime=expire
application.lock
application(cacheName)=obj
application(expireTimeName)=expireTime
application.unlock
end sub

public property get value
'取值
if isempty(obj) or not isDate(expireTime) then
value=null
elseif CDate(expireTime)value=null
else
value=obj
end if
end property

public sub makeEmpty()
'释放application
application.lock
application(cacheName)=empty
application(expireTimeName)=empty
application.unlock
obj=empty
expireTime=empty
end sub

public function equal(var2)
'比较
if typename(obj)<>typename(var2) then
equal=false
elseif typename(obj)="Object" then
if obj is var2 then
equal=true
else
equal=false
end if
elseif typename(obj)="Variant()" then
if join(obj,"^")=join(var2,"^") then
equal=true
else
equal=false
end if
else
if obj=var2 then
equal=true
else
equal=false
end if
end if
end function
end class
%>

Comments: Post a Comment



<< Home

This page is powered by Blogger. Isn't yours?