jQuery MiniUI

标题: asp使用miniui的表格控件时出现乱码如何解决? [打印本页]

作者: 不凡-S    时间: 2013-6-19 21:17:01     标题: asp使用miniui的表格控件时出现乱码如何解决?

我使用的asp在用miniui表格控件时中文显示乱码,请问怎么解决?如下图(我asp数据文件的编码已经改成utf-8的了也不行)
[attach]2196[/attach]
数据文件代码如下:

<!-- #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&"]}"
%>


作者: factory    时间: 2013-6-20 09:52:03

乱码必定是你的编码问题,
检查你的前后台,数据库编码




欢迎光临 jQuery MiniUI (http://miniui.com/discuss/) Powered by Discuz! X2