初学.net,使用了access做了个简易的网站,有日文版,中文版搜索是没有问题,可是到了日文版时,只要数据库里面含有日文,就会报错“System.Exception: 内存溢出”,上网百度了下,提示access数据库就有这样的Bug,但是没有.net的解决代码,源代码如下:
string Where = "1=1";
if (!string.IsNullOrEmpty(GetKey)){
string k=GetKey.Replace(" ","%");
Where += " and ( Title like '%" + k + "%' or Title2 like '%" + k + "%') ";
}
RptPro.DataSource = mydb.Query("F_Product","*", Where + " order by displayorder desc");
RptPro.DataBind();
求大神指点,感激不尽,谢谢!
试试将操作系统的语言的区域都设置为日本