using System; using System.Collections.Generic; using System.Linq; using System.Web; using Cemetery_Manage_Information_System.Models.Common; namespace Cemetery.Controllers.Common { public class ResponseHelper { public ResponseHelper() { this.dataGrid…
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; namespace WeiXin.Core { public class ResponseHelper { public static void Success(string Data) { HttpContext context = HttpContext.Current; context…
今天封装了一个返回json的消息类 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Script.Serialization; namespace informix.DBUtility { /// <summary> /// 消息提示类 /// </summary>…
1.1:下拉框条件:后台取得ViewBag传给前台 MonitorController: public ActionResult BigData(): //下拉框筛选条件 var result = MonitorBLL.GetSoilPlantCountByCode(loginSoil); var r = (object)result.data; ViewBag.soilplantcount = r; // loginSoil是登录用户 public static ResponseModel G…