protected void Page_Load(object sender, EventArgs e) { int ID = 0; string action = GetstringKey("action"); if (action == "save") { Result result = new Result(); string logbrief = ""; News newChannelNews = new News(); int _ModeID = GetIntKey("ModeID"); int _PCID = GetIntKey("PCID"); ID = GetIntKey("iD"); if (_ModeID != 0 && _PCID != 0 && ID != 0) { newChannelNews = GetShare(ID); newChannelNews.NoID(); newChannelNews.AddTime = DateTime.Now; newChannelNews.AddID = AdminMethod.AdminID; newChannelNews.ExhibitionID = AdminMethod.ExhibitionID; newChannelNews.TypeID = 0; newChannelNews.IsShare = 0; newChannelNews.OldID = 0; newChannelNews.ModeID = _ModeID; newChannelNews.PcID = _PCID; newChannelNews.OrderID = CloudSQL.GetNowTime(); int Sid = TableOperate <News> .InsertReturnID(newChannelNews); if (Sid > 0) { CloudSQL.UpdataVesion(_PCID); result.isOk = true; result.msg = "资源调用成功!"; logbrief = "管理员:【" + AdminMethod.AdminFullName + "】,在" + DateTime.Now.GetDateTimeFormats('f')[0].ToString() + "调用了【" + newChannelNews.Title + "】资源"; Lognet.AddLogin(logbrief); AddUsing(Sid); } else { result.msg = "资源调用失败!"; } } Response.ContentType = "text/json"; Response.Write(new JavaScriptSerializer().Serialize(result)); Response.End(); } else { ID = GetIntKey("iD"); iD.Value = ID + ""; } DataBind(); }
protected void Page_Load(object sender, EventArgs e) { Result result = new Result(); JavaScriptSerializer js = new JavaScriptSerializer(); try { int ID = GetIntKey("id"); Device condition = new Device(); condition.ID = ID; Device light = TableOperate <Device> .GetRowData(condition); if (light.ID > 0) { Device newlight = new Device(); newlight = light; // newlight.NoID();2020/08/17 newlight.Name = light.Name + "-复制"; newlight.AddTime = DateTime.Now; newlight.AddID = AdminMethod.AdminID; newlight.ExhibitionID = AdminMethod.ExhibitionID; newlight.OrderID = CloudSQL.GetNowTime(); int Sid = TableOperate <Device> .InsertReturnID(newlight); if (Sid > 0) { result.isOk = true; } } } catch (Exception ex) { result.isOk = false; result.msg = ex.ToString(); } Response.ContentType = "text/json"; Response.Write(js.Serialize(result)); Response.End(); }
/// <summary> /// 分享到资源池 /// </summary> /// <param name="news"></param> /// <returns></returns> protected int Insert(News news) { if (news.IsShare == 1) { return(0); } //public void NoID() //{ // iD_initialized = false; //} News newNews = new News(); newNews = news; newNews.NoID(); newNews.ShareTime = DateTime.Now; newNews.TypeID = 1; newNews.AddID = AdminMethod.AdminID; newNews.OldID = news.ID; newNews.OrderID = CloudSQL.GetNowTime(); int _ID = TableOperate <News> .InsertReturnID(newNews); return(_ID); }
protected void Page_Load(object sender, EventArgs e) { string action = GetstringKey("action"); if (action != "save") { if (!string.IsNullOrEmpty(this.Request["iD"])) { int _iD = Convert.ToInt32(this.Request["iD"]); Light condition = new Light(); condition.ID = _iD; news = TableOperate <Light> .GetRowData(condition); iD.Value = Convert.ToString(news.ID); State.Value = Convert.ToString(news.State); // } DataBind(); } else { Result result = new Result(); string logbrief = ""; Light newChannelNews = new Light(); newChannelNews.ID = 0; newChannelNews.AutoForm(this.Page); string Title = newChannelNews.Title; int _iD; if (!string.IsNullOrEmpty(this.Request["iD"])) { _iD = Convert.ToInt32(this.Request["iD"]); TableOperate <Light> .Update(newChannelNews); result.msg = "编辑成功,等待返回列表"; logbrief = "管理员:【" + AdminMethod.AdminFullName + "】在" + DateTime.Now.GetDateTimeFormats('f')[0].ToString() + "编辑了为【" + Title + "】的灯光"; } else { newChannelNews.AddTime = DateTime.Now; newChannelNews.AddID = AdminMethod.AdminID; newChannelNews.ExhibitionID = AdminMethod.ExhibitionID; newChannelNews.OrderID = CloudSQL.GetNowTime(); _iD = TableOperate <Light> .InsertReturnID(newChannelNews); result.msg = "添加成功,等待返回列表"; logbrief = "管理员:【" + AdminMethod.AdminFullName + "】在" + DateTime.Now.GetDateTimeFormats('f')[0].ToString() + "添加了为【" + Title + "】的灯光"; } if (_iD > 0) { result.isOk = true; Lognet.AddLogin(logbrief); } else { result.msg = "操作失败"; } Response.ContentType = "text/json"; Response.Write(new JavaScriptSerializer().Serialize(result)); Response.End(); } DataBind(); }
protected void Page_Load(object sender, EventArgs e) { m_ExhibitionList = ChannelProvider.SelectAll(); string action = GetstringKey("action"); PCID = GetIntKey("pcid"); if (action != "save") { if (!string.IsNullOrEmpty(this.Request["iD"])) { int _iD = Convert.ToInt32(this.Request["iD"]); News condition = new News(); condition.ID = _iD; news = TableOperate <News> .GetRowData(condition); iD.Value = Convert.ToString(news.ID); state.Value = Convert.ToString(news.State); } DataBind(); } else { Result result = new Result(); string logbrief = ""; News newChannelNews = new News(); newChannelNews.ID = 0; newChannelNews.AutoForm(this.Page); newChannelNews.FileType = SysConfig.CheckPlayType(newChannelNews.Files); if (newChannelNews.JsonStr == "" || newChannelNews.JsonStr == null) { newChannelNews.JsonStr = "{\"type\": \"google\",\"data\": \"\"}"; } string oldFiles = GetstringKey("oldFiles"); if (oldFiles != newChannelNews.Files && newChannelNews.FileType == 4) { string piczip = CloudSQL.GetPicZip(newChannelNews.Files, news.Files1); newChannelNews.Files1 = piczip; } string Title = newChannelNews.Title; int _iD; if (!string.IsNullOrEmpty(this.Request["iD"])) { _iD = Convert.ToInt32(this.Request["iD"]); TableOperate <News> .Update(newChannelNews); result.msg = "编辑成功,等待返回列表"; logbrief = "管理员:【" + AdminMethod.AdminFullName + "】在" + DateTime.Now.GetDateTimeFormats('f')[0].ToString() + "编辑了为【" + Title + "】的云资源"; } else { newChannelNews.AddTime = DateTime.Now; newChannelNews.ShareTime = DateTime.Now; newChannelNews.AddID = AdminMethod.AdminID; newChannelNews.ExhibitionID = AdminMethod.ExhibitionID; newChannelNews.TypeID = 1; newChannelNews.IsShare = 0; newChannelNews.OldID = 0; newChannelNews.OrderID = CloudSQL.GetNowTime(); _iD = TableOperate <News> .InsertReturnID(newChannelNews); result.msg = "添加成功,等待返回列表"; logbrief = "管理员:【" + AdminMethod.AdminFullName + "】在" + DateTime.Now.GetDateTimeFormats('f')[0].ToString() + "添加了为【" + Title + "】的云资源"; } if (_iD > 0) { result.isOk = true; Lognet.AddLogin(logbrief); Lognet.AddMailBox(logbrief); } else { result.msg = "操作失败"; } Response.ContentType = "text/json"; Response.Write(new JavaScriptSerializer().Serialize(result)); Response.End(); } DataBind(); }