string str=e.GetString(buffer,offset,count);
for(int i=0;i<str.Length;i++)
{
int j=_sGB.IndexOf(str[i]);
if(j!=-1)str=str.Replace(_sGB[j],_tGB[j]);
}
e=Encoding.GetEncoding(System.Web.HttpContext.Current.Response.Charset);
_sink.Write(e.GetBytes(str), 0, e.GetByteCount(str));
}
}
public class EncodingFilter
{
Page thisPage;
public EncodingFilter(Page mPage)
{
thisPage=mPage;
}