jQuery MiniUI

 找回密码
 立即注册
查看: 2694|回复: 1
打印 上一主题 下一主题

asp使用miniui的表格控件时出现乱码如何解决? [复制链接]

Rank: 1

跳转到指定楼层
楼主
发表于 2013-6-19 21:17:01 |只看该作者 |倒序浏览
我使用的asp在用miniui表格控件时中文显示乱码,请问怎么解决?如下图(我asp数据文件的编码已经改成utf-8的了也不行)

数据文件代码如下:

<!-- #include file="conn.asp" -->
<%
currentpage=cint(Request("pageIndex"))+1
if currentpage="" then
  currentpage="1"
  else
  if currentpage<1 then
  currentpage="1"
  end if
end if
        paix_zd = Request("sortField")
        paix = Request("sortOrder")

set rs =server.createobject("ADODB.RecordSet")
    sql="select * from project_data order by "&paix_zd&" "&paix&""
    rs.open sql,conn,1,1
    if not rs.eof then
    rs.pagesize=Request("pageSize")
    rs.absolutepage=currentpage
       for currentrec=1 to rs.pagesize
                if rs.eof then
                exit for
           end if
        data="{""username"":"""&rs("username")&paix_zd&paix&""","&"""project_name"":"""&rs("project_name")&"""},"&data

rs.movenext
next
end if
  if right(data,1)="," then
  data=mid(data,1,len(data)-1)
  end if
response.write "{""total"":"&rs.recordcount&",""data"":["&data&"]}"
%>

附件: 你需要登录才可以下载或查看附件。没有帐号?立即注册

Rank: 8Rank: 8

沙发
发表于 2013-6-20 09:52:03 |只看该作者
乱码必定是你的编码问题,
检查你的前后台,数据库编码

Archiver|普加软件

GMT+8, 2024-11-28 20:39 , Processed in 1.050708 second(s), 10 queries .

Powered by Discuz! X2

© 2001-2011 Comsenz Inc.

回顶部