asp title编码转换

来源:互联网 发布:上海大学云计算平台 编辑:程序博客网 时间:2024/04/30 04:28

url_name="http://expand.video.iqiyi.com/api/album/list.xml?apiKey=4b1e78e9d6cf4759951f0792b89c551a&categoryId=2&keyWord="&server.URLEncode(URLEncode(titleArr(0),65001) )



Public Function URLEncode(ByVal str, ByVal codePage)
    Dim preCodePage
    preCodePage = Session.CodePage
    Session.CodePage = codePage
    URLEncode = Server.URLEncode(str)
    Session.CodePage = preCodePage
End Function

0 0