客户端我是这样写的 $.getJSON("http://www.95net.net/toSay.asp?callback=?",function(n){
  alert(n.liBox);  
});服务器端也就是toSay.asp这样写的<%
   json = request.QueryString("callback")   
   mydata = ""
   response.Charset = "gb2312"
   sql = "select top 5 * from news where news_kind='1252' order by release_date desc"
   set rs = conn.execute(sql)
   if rs.eof then
      mydata = "<li>技术支持 安徽末子网络信息科技有限公司</li>"
   else
      while not rs.eof
  mydata = mydata&"<li>"&rs("title")&"</li>"
  rs.movenext
      wend   
   end if
   rs.close
   xmlJson = "{liBox:'"&mydata&"'}"
   xmlJson = json&xmlJson
   response.Write xmlJson
   response.End()
%>总是报错 .. 啊 高人指点 !