//更新列车的定员 void JButton2_Click(object sender, EventArgs e) { WebFrame.Data.JTable tab1 = new WebFrame.Data.JTable("HIGHTRAINPROFILE"); System.Collections.Generic.List <WebFrame.Data.SearchField> condition = new System.Collections.Generic.List <WebFrame.Data.SearchField>(); System.Collections.Generic.Dictionary <String, object> data1 = new System.Collections.Generic.Dictionary <string, object>(); int i = 1; String[] arr1 = "PCount5,PCount4,PCount1,PCount2,PCount3".Split(','); foreach (RepeaterItem item in this.Repeater2.Items) { condition.Clear(); condition.Add(new WebFrame.Data.SearchField("ID", i + "", WebFrame.SearchFieldType.NumericType)); data1.Clear(); foreach (String m in arr1) { TextBox t1 = item.FindControl(m) as TextBox; if (t1 != null) { if (t1.Text.Trim() != String.Empty) { data1[m] = t1.Text; } else { data1[m] = "0"; } } } tab1.EditData(data1, condition); i++; } tab1.Close(); HighTrainProfile.SetData(); WebFrame.Util.JAjax.Alert("提示:更新数据操作成功!"); }
void button1_Click(object sender, ImageClickEventArgs e) { //System.Web.Security.FormsAuthentication.RedirectFromLoginPage(this.UserID.Text, false); String ip1 = KIPBU.GetIPs(); if (String.IsNullOrEmpty(ip1) == false) { String[] ips = ip1.Split(','); List <String> list1 = new List <string>(); foreach (String m in ips) { if (list1.Contains(m) == false) { list1.Add(m); } } String soureceIP = Request.UserHostAddress; if (list1.Contains(soureceIP)) { if (String.IsNullOrEmpty(this.UserID.Text) == false && String.IsNullOrEmpty(this.PassWord.Text) == false) { MyUserName user1 = new MyUserName(); bool succ = user1.Login(this.UserID.Text, this.PassWord.Text); if (succ) { FrameLib.UserID = this.UserID.Text; FrameLib.DepartID = "DepartID"; //基础数据初始化 //基础数据发生变化时,重写这些数据; ChexianBianZhuData.Init(); LiChengProfile.Init(); LiChengJianRate.Init(); JiaKuaiProfile.Init(); LineProfile.Init(); // QianYinFeeProfile.Init(); CheXianProfile.Init(); HighTrainProfile.Init(); TrainLineKindProfile.Init(); TrainProfile.Init(); PersonGZProfile.Init(); RiChangFeeProfile.Init(); A2A3FeeProfile.Init(); //调整夏冬切换的线路 TrainLine.ExchangeSpringAndWinter(); //处理系统的升级 AppCode.Upgrade.Go(); Response.Redirect("TrainWeb/MainFrame.aspx", true); } else { JAjax.Alert("错误:用户名或密码不正确!"); } } } else { Response.Redirect("/GenericErrorPage.htm", true); } } else { Response.Redirect("/GenericErrorPage.htm", true); } }