您现在的位置是:网站首页> 编程资料编程资料
aspx后台传递Json到前台的两种接收方法推荐_实用技巧_
2023-05-24
466人已围观
简介 aspx后台传递Json到前台的两种接收方法推荐_实用技巧_
第一种:前台接收
dataType: "json", success: function (data) { var varReceiver = data; }<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="echart2.aspx.cs" Inherits="RTC.echart2" %>
第二种:前台接收
dataType: "text", success: function (data) { //var varReceiver = data; var varReceiver = jQuery.parseJSON(data); 。。。。。 }两者统一的后台 一般处理程序ashx:
using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Web; namespace RTC { /// /// getrtchistorydata 的摘要说明 /// public class getrtchistorydata : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; string strRTCNo = context.Request.QueryString["rtcno"].ToString(); SqlConnection con = new SqlConnection("server=192.168.0.222;uid=sa;pwd=hiwits;database=CeShi_QingDao;Max Pool Size=2048;"); SqlCommand cmd = new SqlCommand("select RtcNO,RoomTemp,InstallPlace,convert(varchar,RecordTime,120) as RecordTime,systime from RTCHistory where RtcNO='" + strRTCNo + "' order by InstallPlace,RecordTime", con); SqlDataAdapter da = new SqlDataAdapter(cmd); DataSet ds = new DataSet(); da.Fill(ds); string stbList = ""; stbList = "{\"Rows\":["; foreach (DataRow dr in ds.Tables[0].Rows) { stbList = stbList + "{ \"RecordTime\":\"" + dr[3].ToString() + "\","; stbList = stbList + " \"RoomTemp\":\"" + dr[1].ToString() + "\"},"; } stbList = stbList.Substring(0, stbList.Length - 1);//去掉最后的一个逗号 stbList = stbList + "],"; stbList = stbList + "\"Count\":[{\"total\":" + ds.Tables[0].Rows .Count+ "}]";//用来记录一共返回了几条数据记录 stbList = stbList + "}"; context.Response.Write(stbList.ToString()); } public bool IsReusable { get { return false; } } public void RetrunHistoryData() { } } }以上这篇aspx后台传递Json到前台的两种接收方法推荐就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
相关内容
- CheckBox控件默认选中,提交时永远获得选中状态的实现代码_实用技巧_
- asp.net使用LINQ to SQL连接数据库及SQL操作语句用法分析_实用技巧_
- ASP.NET MVC文件上传教程(二)_实用技巧_
- ASP.NET MVC图片上传前预览简单实现_实用技巧_
- ASP.NET的广告控件AdRotator用法分析_实用技巧_
- ASP.NET MVC实现图片上传、图片预览显示_实用技巧_
- ASP.NET MVC 文件上传教程(一)_实用技巧_
- 解析ABP框架中的数据传输对象与应用服务_实用技巧_
- 解读ASP.NET 5 & MVC6系列教程(17):MVC中的其他新特性_自学过程_
- 解读ASP.NET 5 & MVC6系列教程(16):自定义View视图文件查找逻辑_自学过程_
