可能標題描述的不是特別清楚
當時的問題是這樣的:在我的系統項目中,參考的美工靜態頁面是gb2312格式的,當此編碼拿到項目中後,utf-8編碼的系統,加載頁面時,會出現樣式問題,比如不能正常居中等。(IE6通常有樣式問題)
解決辦法如下,(如果必須采用gb2312編碼的話)
在webconfig的<system.web>中增加
復制代碼 代碼如下:
<globalization requestEncoding="gb2312" responseEncoding="gb2312" uiCulture="zh-CN" culture="zh-CN" fileEncoding="gb2312"/>
此時,頁面效果正常。
但是,如果這個時候遇到有頁面傳值中文的功能時,傳值的中文會亂碼。即使在js中用了encodeURIComponent也不能解決
此時,在項目中增加如下類,用於專門處理request傳值轉回utf-8格式。
復制代碼 代碼如下:
namespace XXX
{
//用於處理IE6下UTF-8得不到樣式的問題:將web的編碼改為gb2312,request傳值通過本方法轉回utf-8
public class ContentEncodingModule : IHttpModule
{
public void Init(HttpApplication app)
{
app.BeginRequest += new EventHandler(app_BeginRequest);
}
public void Dispose()
{
}
void app_BeginRequest(object sender, EventArgs e)
{
HttpApplication app = (HttpApplication)sender;
HttpWorkerRequest request = (((IServiceProvider)app.Context)
.GetService(typeof(HttpWorkerRequest)) as HttpWorkerRequest);
app.Request.ContentEncoding = System.Text.Encoding.UTF8;
}
}
}
並在webconfig中引用此類
復制代碼 代碼如下:
<httpModules>
<add name="ContentEncodingModule" type="XXX.ContentEncodingModule,XXX"/>
</httpModules>
問題解決。
但根據參考文章說,盡量還是不要將靜態頁用gb2312編碼,除非有特殊用途。