asp.net下百度的编码和解码
程序员文章站
2022-05-31 17:08:37
百度的编码: 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")));
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")));
上一篇:
蓝牙开发
推荐阅读
-
新基建下的新机会,任泽平为何看好百度、华为和阿里?
-
asp.net下百度的编码和解码
-
详解ASP.NET MVC下的异步Action的定义和执行原理
-
php/asp/asp.net中判断百度移动和PC蜘蛛的实现代码
-
ASP.NET MVC下使用AngularJs语言(六):获取下拉列表的value和Text
-
ASP.NET下Word文档的在线编辑、保存和全文关键字搜索的完整示例 ASP.NETWord文档在线编辑保存完整示例
-
CentOS 5.1下跑Mono和Asp.net的实现方法
-
CentOS 5.1下跑Mono和Asp.net的实现方法分享
-
请问一下微博和百度贴吧的热门话题排行榜是如何生成的?
-
asp.net下百度的编码和解码