为什么全球化编码不起作用(无法编码字符集)?

时间:2018-09-24 05:48:24

标签: asp.net unicode character-encoding

我的语言的字符集是 x-iscii-be 。该组中的数字如下所示:

1 -> ১ 
2 -> ২
3 -> ৩
4 -> ৪
5 -> ৫
6 -> ৬
7 -> ৭
8 -> ৮
9 -> ৯
0 -> ০

但是当给定输入Ι时,可以在调试器modε中看到,控制器参数中什么也没有接收到(参数接收0,而不是空值)。 我在web.config文件中修改了应用程序全球化类。

<system.web>
<globalization requestEncoding="x-iscii-be" responseEncoding="x-iscii-be" />  
<authentication mode="None" />
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />

我该怎么做才能正确编码所需字符集中的数字值?

0 个答案:

没有答案