Hi all! I want to send the POST request to my asp web server. That POST request contains one parameter, which has cyrillic symbols. When my server recieves that request, it shows me an error window "Value can not be undefined..."
I transform my query string on the client side:
But it does not help me. How I need to decode that string on the server side?
Sorry for my English :)
I transform my query string on the client side:
Code:
requestString = HttpUtility.UrlEncode(requestString);
Sorry for my English :)
Comment