views:

6

answers:

1

I'm now using UTF-8 in my web application, but some clients would POST data in other charsets like GB2312. I can't set the <globalization requestEncoding="GB2312" /> because it would affect the whole site.

Can I use a charset for decoding the data for specific requests so that I can get the correct text via context.Request.Forms collections?

A: 

Maybe this convert can help you solve that.

Aristos