关于ASP程序读取MYSQL数据库中文显示乱码的问题
1,phpmyadmin中显示MySQL字符集:UTF-8Unicode(utf8)MySQL连接校对:utf8_general_ci(这个好像不可以改)数据库表:lat...
1, phpmyadmin中显示 MySQL 字符集: UTF-8 Unicode (utf8) MySQL 连接校对:utf8_general_ci(这个好像不可以改) 数据库 表:latin1_swedish_ci 2,my.ini 中default-character-set=utf-8, 3,链接文件1.asp代码: <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <% strconnection="driver={mysql odbc 3.51 driver};database=onlineedit;server=localhost;uid=admin;password=" set adodataconn = server.createobject("adodb.connection") adodataconn.open strconnection strquery = "select * from article" set rs = adodataconn.execute(strquery) if not rs.bof then %> <table> <tr> <td><b>姓名</b></td> <td><b>密码</b></td> </tr> <% do while not rs.eof %> <tr> <td><%=rs("title")%></td> <td><%=rs("author")%></td> </tr> <% rs.movenext loop %> </table> <% else response.write("无数据.") end if rs.close adodataconn.close set adodataconn = nothing set rsemaildata = nothing %> <body> </body> </html> 并且用文本打开1.asp,另存了UTF-8模式 , 结果是依旧读取出来中文是????? 哪位大侠能告诉我,到底还要设置什么东西?给个具体车配置清单
展开
展开全部
<%@
CODEPAGE=65001
%>
<%
Response.CodePage=65001%>
<%
Response.Charset="GBK"
%>
用写字板把
.asp
文件另存为
GBK字符集
------------------------------------------------------------
或者查询之前先执行下面这一句
set
chs=conn.Execute("SET
NAMES
'gb2312'")
'查询数据库表
sql
=
"SELECT
*
FROM
tb_commondata"
Set
rs
=
conn.Execute(sql)
这样就不会乱码了
CODEPAGE=65001
%>
<%
Response.CodePage=65001%>
<%
Response.Charset="GBK"
%>
用写字板把
.asp
文件另存为
GBK字符集
------------------------------------------------------------
或者查询之前先执行下面这一句
set
chs=conn.Execute("SET
NAMES
'gb2312'")
'查询数据库表
sql
=
"SELECT
*
FROM
tb_commondata"
Set
rs
=
conn.Execute(sql)
这样就不会乱码了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询