CNCEC_SUBQHSE_WUHUAN/SGGL/FineUIPro.Web/ZHDD/ZHDD.aspx.cs

47 lines
1.7 KiB
C#
Raw Normal View History

2025-05-24 14:48:16 +08:00
using BLL;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using AspNet = System.Web.UI.WebControls;
namespace FineUIPro.Web.ZHDD
{
public partial class ZHDD : PageBase
{
2025-07-10 19:18:15 +08:00
2025-05-24 14:48:16 +08:00
#region
/// <summary>
/// 加载页面
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
2025-07-10 19:18:15 +08:00
var project = Funs.DB.Base_Project.FirstOrDefault(x => x.ProjectId == CurrUser.LoginProjectId);
string username = project.AQMAccount;// "bruce";
string password = project.AQMPwd;// "Admin!@%2316891#16891";
var res1 = APIGetHttpService.Http("https://aqm.cwcec.com/api/index.php", "POST", "application/x-www-form-urlencoded", null,"ctl=tool&act=get_pkey&user_name=" + username + "&pwd="+ password);
2025-05-24 14:48:16 +08:00
var j1 = JsonConvert.DeserializeObject<dynamic>(res1);
string data = j1.data;
2025-07-10 19:18:15 +08:00
var res2 = APIGetHttpService.Http("https://aqm.cwcec.com/api/index.php?ctl=tool&act=get_token&user_name=" + username + "&pkey="+j1.data, "POST");
2025-05-24 14:48:16 +08:00
var j2 = JsonConvert.DeserializeObject<dynamic>(res2);
string session_id = j2.session_id;
string token = j2.token;
2025-07-10 19:18:15 +08:00
ifZHDD.Src = "https://aqm.cwcec.com/login/#token=" + session_id+"&user_name=" + username + "target=home";
2025-05-24 14:48:16 +08:00
}
}
2025-07-10 19:18:15 +08:00
#endregion
2025-05-24 14:48:16 +08:00
}
}