js 汉字编码 C#后台解码

js

encodeURI("汉字");

decodeURI("解码的内容");

C#:

Server.UrlDecode();

 

js汉字编码可参考:

http://www.nowamagic.net/librarys/veda/detail/327

js获取Request参数

function getArgs(strParame) {

         var args = new Object();

         var query = location.search.substring(1); // Get query string

         var pairs = query.split("&"); // Break at ampersand

         for (var i = 0; i < pairs.length; i++) {

             var pos = pairs[i].indexOf('='); // Look for "name=value"

             if (pos == -1) continue; // If not found, skip

             var argname = pairs[i].substring(0, pos); // Extract the name

             var value = pairs[i].substring(pos + 1); // Extract the value

             value = decodeURIComponent(value); // Decode it, if needed

             args[argname] = value; // Store as a property

         }

         return args[strParame]; // Return the object

     }

 

 

 

 

 

 

 

你可能感兴趣的:(C#)