using MESClassLibrary.BLL.BasicInfo; using MESClassLibrary.EFModel; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace MESWebSite.HttpHandlers { /// /// StationHandler 的摘要说明 /// public class StationHandler : IHttpHandler { HttpRequest Request = null; HttpResponse Response = null; public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; Request = context.Request; Response = context.Response; string method = Request.Params["method"]; switch (method) { case "QueryList": QueryList(); break; case "SaveInfo": SaveInfo(); break; case "DelInfo": DelInfo(); break; case "QueryForCombobox": QueryForCombobox(); break; default: break; } } public bool IsReusable { get { return false; } } void QueryList() { string page = Request.Params["page"]; string pagesize = Request.Params["rows"]; string StationNo = Request.Params["StationNo"]; string LineID = Request.Params["LineID"]; if (string.IsNullOrEmpty(page)) { page = "0"; } if (string.IsNullOrEmpty(pagesize)) { pagesize = "15"; } StationBLL bll = new StationBLL(); Response.Write(bll.SearchInfo(page, pagesize, StationNo, LineID)); Response.End(); } void SaveInfo() { string StationID = Request.Params["StationID"]; string LineID = Request.Params["LineID"]; string StationNo = Request.Params["StationNo"]; string Des = Request.Params["Des"]; StationBLL bll = new StationBLL(); tb_Station md = new tb_Station(); md.LineID = LineID; md.StationNo = StationNo; md.Des = Des; if (StationID == "0") { //新增 md.StationID = Guid.NewGuid().ToString(); Response.Write(bll.AddInfo(md) == true ? "true" : "false"); } else { //修改 md.StationID = StationID; Response.Write(bll.UpdateInfo(md) == true ? "true" : "false"); } Response.End(); } void DelInfo() { string StationID = Request.Params["StationID"]; StationBLL bll = new StationBLL(); tb_Station md = new tb_Station(); md.StationID = StationID; Response.Write(bll.DelInfo(md) == true ? "true" : "false"); Response.End(); } void QueryForCombobox() { string StationNo = Request.Params["StationNo"]; StationBLL bll = new StationBLL(); Response.Write(bll.GetComboboxData(StationNo)); Response.End(); } } }