using MESClassLibrary.BLL.Check; using MESClassLibrary.BLL.Log; using System; using System.Reflection; using System.Web.Services; namespace MESWebSite.Manage { public partial class PlatingScrap : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (Request.Cookies["LoginUserInfo"] == null) { Response.Write(""); } } [WebMethod] public static string GetDate(string StartTime, string EndTime, string side) { try { InspectResultBLL bll = new InspectResultBLL(); return bll.SearchPlatingScrap(StartTime, EndTime, side); } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); return ""; } } } }