how to convert the parameter to pass through http
I have russian word привет
browser as it converts ïðèâåò
.
I use Ht开发者_运维问答tpUtility.UrlDecode(str)
But this not helped.
Try HttpUtility.UrlEncode(str)
instead. You encode a string to transmit it via http; you decode it to display it in its original form.
精彩评论