| 1. Set the Web. config file <System. Web> ...... <Globalization requestencoding = "gb2312" responseencoding = "gb2312" Culture = "ZH-CN" fileencoding = "gb2312"/> ... </System. Web> 2. Before passing Chinese characters, encode the Chinese parameters to be passed and decode them upon receiving them. > Transfer String name = "Chinese parameter "; Response. Redirect ("B. aspx? Name = "+ server. urlencode (name )); > Receive String name = request. querystring ["name"]; Response. Write (server. urldecode (name )); 3. If a Chinese parameter is transferred from the. html file to the. aspx file (that is, URL conversion is not performed using the Redirect () method from the background ). Similarly, the passed Chinese parameters must be encoded and decoded upon receiving. > Transfer <Script language = "JavaScript"> Function gourl () { VaR name = "Chinese parameter "; Location. href = "B. aspx? Name = "+ escape (name ); } <Body onclick = "gourl ()"> > Receive String name = request. querystring ["name"]; Response. Write (server. urldecode (name )); Summary: In general. Set the Web. config file. However, if you use JavaScript to call the WebService method (passing Chinese parameters to WebService ). The Web. config file is invalid. Or use response. Redirect ("test1.aspx? 111 = "+ system. web. httputility. urlencode ("People's Republic of China"); // It is recommended that you obtain Chinese parameters from other pages without garbled characters, it is simpler string message = "http: // localhost/test/test1.aspx? 111 = "+ system. web. httputility. urlencode ("People's Republic of China"); HTTP: // The address for which you want to obtain the return value of a page " // send a request httpwebrequest myhttpwebrequest = (httpwebrequest) webrequest. create (Message); // accept the request httpwebresponse myhttpwebresponse = (httpwebresponse) myhttpwebrequest. getresponse (); stream receivestream = myhttpwebresponse. getresponsestream (); streamreader readstream = new streamreader (receivestream, system. text. encoding. getencoding ("gb2312"); // This is the returned result of the return value output to the page returnvalue = readstream. readtoend (); |