开发者

JQuery autocomplete for unicode character

Is there any JQuery autocomplete for Unicode character(Thai). I already with this and that my code for asp.net

protected void Page_Load(object sender, EventArgs e)
{
    var q = Server.UrlEncode(Request.QueryString["q"]);
    Response.Write(q);
}

The URL is http://localhost:2286/customerauto.aspx?q=%E0%B8%93 like 开发者_如何学JAVAthat.

I got q="%e0%b8%93"; actually the correct value is . So I don't know client side encoding is wrong or server side encoding is wrong ?

Pls Help me


when u want to transfer UTF8 string just

Response.Write("this string represent UTF8");

and set page encoding to UTF8

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜