欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net下百度的编码和解码

程序员文章站 2023-03-13 17:59:15
百度的编码: str = system.web.httputility.urlencode("中文", system.text.unicode...
百度的编码:
str = system.web.httputility.urlencode("中文", system.text.unicodeencoding.getencoding("gb2312")).toupper()

解码
system.web.httputility.urldecode("%c3%cf%cf%dc%bb%e1", system.text.unicodeencoding.getencoding("gb2312"))



string a = system.web.httputility.urlencode("孟宪会", system.text.unicodeencoding.getencoding("gb2312")).toupper();
response.write(a);
response.write(system.web.httputility.urldecode("%c3%cf%cf%dc%bb%e1", system.text.unicodeencoding.getencoding("gb2312")));