I pass a string similar to xml to another page in one page. In this page, I use Request.QueryString [] to accept, how can I say that there are unsafe characters. How can I
To receive such characters !!
It seems that the characters after Encode cannot exceed 128 bytes, right? If the Chinese characters seem to be long after encoding, you can only put 5 Chinese characters, haha
When transmitting in the background: url="description.aspx?name="+Server.UrlEncode(myname.text);
response.redirect(url);
JS transfer: .src = "AXXXX.aspx?ValueID=" + escape(node.Text);//Encode the parameters before passing them
When parsing in the background: Server.UrlDecode(this.Page.Request.QueryString["ValueID"]).ToString();