
ASP/ASP.Net
文章平均质量分 71
murky
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
在VB中实现URLEncode转换
Public Function URLEncode(strInput As String) As String Dim strOutput As String Dim intAscii As Integer Dim i As Integer For i = 1 To Len(strInput) intAscii = As原创 2005-08-26 14:03:00 · 4479 阅读 · 2 评论 -
ASP中汉字与UTF-8的互相转换
=============汉字转换为UTF-8==================function chinese2unicode(Str) for i=1 to len(Str) Str_one=Mid(Str,i,1) Str_unicode=Str_unicode&chr(38)原创 2005-08-27 13:33:00 · 3010 阅读 · 0 评论