特殊符号存入数据库后无法查询的问题 |
悬赏5金钱已解决
最佳答案双引号可以这样写, 但是.NET入库的话 双引号就可能被转URL编码了 成''Diamond''
所以在数据层入库的时候 进行转码 。 转码方式:
需要使用的类:System.Web.HttpUtility
在这个类中可以使用UrlEncode()和UrlDecode()方法进行编码和解码!
例解码:string s = "%5B1%2C2%5D";string result = System.Web.HttpUtility.UrlDecode(s);此时result的值为"[1,2]"
编码:string s = "[1,2]";string result = System ...
| |
|
| |
| |
|