28,408
社区成员




<%
function con(sstr)
dim str
set stm=server.CreateObject("adodb.stream")
stm.Type=2
stm.mode=3
stm.charset="GBK"
stm.open
stm.WriteText sstr
Stm.Position = 0
Stm.Type = 2
Stm.Charset = "utf-8"
str=stm.readtext
stm.Close
set stm=nothing
con=str
end function
Response.Buffer=True
Dim MyConnection, TheURL
TheURL = "http://kaifu163tech.blog.163.com/rss/"
Set MyConnection = Server.CreateObject("Microsoft.XMLHTTP")
MyConnection.Open "GET", TheURL, False
MyConnection.Send
TheData = MyConnection.responseText
Response.ContentType = MyConnection.getResponseHeader("Content-Type")
Response.Write con(TheData)
Set MyConnection = Nothing
response.write con(thedata)
%>
function con(sstr)
dim str
set stm=server.CreateObject("adodb.stream")
stm.Type=2
stm.mode=3
stm.charset="GBK"
stm.open
stm.WriteText sstr
Stm.Position = 0
Stm.Type = adTypeText
Stm.Charset = "utf-8"
str=stm.readtext
stm.Close
set stm=nothing
con=str
end function
Response.Buffer=True
Dim MyConnection, TheURL
TheURL = "http://kaifu163tech.blog.163.com/rss/"
Set MyConnection = Server.CreateObject("Microsoft.XMLHTTP")
MyConnection.Open "GET", TheURL, False
MyConnection.Send
TheData = MyConnection.responseText
Response.ContentType = MyConnection.getResponseHeader("Content-Type")
Response.Write con(TheData)
Set MyConnection = Nothing
response.write con(thedata)