JavaScript scripts, including escape and Unescape, are usually used when URL transmission is performed.
In. net, many people still want to use this function in C # and VB. NET, but they cannot find a simple implementation.
In fact, when we use. net, we all focus on C # and VB. NET, while ignoring anotherJScript. netJscript.net fully supports JScript functions. Of course, it also supports escape, Unescape, and other JS functions and functions.
To use escape and Unescape in C # and VB. NET, you only need to add reference:Microsoft. JScript
It is the same as Js in use, for example:
C # inside
StringStrescaped = Microsoft. JScript. globalobject. Escape ("Test");
Note: Some JS functions are all stored in jscript.net.GlobalobjectLower
Similarly, you can use functions such as Unescape, encodeuri, and decodeuri.
This content applies to. NET 1.0,. NET 1.1,. NET 2.0
Original article: http://www.zu14.cn/2008/12/14/net_escape/