123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace LYFZ.WeixinServers.DZKJ
- {
- public partial class DZKJTaskExecutionSubmit : System.Web.UI.Page
- {
- string Account = "";
- string Token = "";
- string Features = "";
- protected void Page_Load(object sender, EventArgs e)
- {
- var retJosnObj = DZKJInterface.GetReturnJson(-1, "", "参数错误");
- if (Request.QueryString["Account"] != null)
- {
- Account = Request.QueryString["Account"].ToString();
- }
- if (Request.QueryString["Token"] != null)
- {
- Token = Request.QueryString["Token"].ToString();
- }
- if (Request.QueryString["Features"] != null)
- {
- Features = Request.QueryString["Features"].ToString();
- }
- if (!string.IsNullOrEmpty(Account) && !string.IsNullOrEmpty(Features))
- {
- if (Global.DZKJ_CustomerAccountDataTable.Rows.Contains(Account))
- {
- LYFZ.WeixinServiceDate.DAL.DAL_DZKJ_TaskExecutionStatistics.UpdateTaskExecutionStatistics(Account, Features);
- retJosnObj = DZKJInterface.GetReturnJson(0, "", "提交成功");
- }
- }
- string iniConfigInfo = Newtonsoft.Json.JsonConvert.SerializeObject(retJosnObj);
- Response.Write(iniConfigInfo);
- }
- }
- }
|