姜永辉 1 ヶ月 前
コミット
d420150b77
1 ファイル変更2 行追加2 行削除
  1. 2 2
      wwwroot/mes/login.ashx

+ 2 - 2
wwwroot/mes/login.ashx

@@ -20,7 +20,7 @@ public class login : IHttpHandler, IRequiresSessionState
         string userPassword = (context.Request["userPassword"] is object) ? context.Request["userPassword"].ToString() : "";
         string sessionKey = (context.Request["sessionKey"] is object) ? context.Request["sessionKey"].ToString() : "";
         bool productCheck = (context.Request["productCheck"] is object) ? Convert.ToBoolean(context.Request["productCheck"].ToString()) : false;
-        DateTime endDate = new DateTime(2026, 2, 24);
+        DateTime endDate = new DateTime(2099, 2, 24);
         DateTime datenow = new DateTime();
         using (IDataAccess conn = DataAccess.Create())
         {
@@ -44,7 +44,7 @@ public class login : IHttpHandler, IRequiresSessionState
             if (jsonResult.success)
             {
                 jsonResult.rows = "1";
-                jsonResult.message = "缴费提醒:您使用的系统将于【" + (endDate - datenow).TotalDays + "】天后到期,为确保您能持续使用MES系统,请您务必在2025年2月24日前完成软件费用缴纳。若因未及时缴费导致服务中断,可能会影响您的使用造成不必要的损失。";
+                jsonResult.message = "缴费提醒:您使用的系统将于【" + (endDate - datenow).TotalDays + "】天后到期,为确保您能持续使用MES系统,请您务必在2099年2月24日前完成软件费用缴纳。若因未及时缴费导致服务中断,可能会影响您的使用造成不必要的损失。";
             }
         }
         else