Exemplo n.º 1
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtServerName.Text.Trim().Length == 0)
            {
                strErr += "ServerName不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtServerType.Text))
            {
                strErr += "ServerType格式错误!\\n";
            }
            if (this.txtServerIp.Text.Trim().Length == 0)
            {
                strErr += "ServerIp不能为空!\\n";
            }
            if (this.txtWcfUrl.Text.Trim().Length == 0)
            {
                strErr += "WcfUrl不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtOperTime.Text))
            {
                strErr += "OperTime格式错误!\\n";
            }
            if (this.txtRemark.Text.Trim().Length == 0)
            {
                strErr += "Remark不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtPort.Text))
            {
                strErr += "Port格式错误!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            string   ServerName = this.txtServerName.Text;
            int      ServerType = int.Parse(this.txtServerType.Text);
            string   ServerIp   = this.txtServerIp.Text;
            string   WcfUrl     = this.txtWcfUrl.Text;
            DateTime OperTime   = DateTime.Parse(this.txtOperTime.Text);
            string   Remark     = this.txtRemark.Text;
            int      Port       = int.Parse(this.txtPort.Text);

            WebDemo.Model.WebDemo.CollectServer model = new WebDemo.Model.WebDemo.CollectServer();
            model.ServerName = ServerName;
            model.ServerType = ServerType;
            model.ServerIp   = ServerIp;
            model.WcfUrl     = WcfUrl;
            model.OperTime   = OperTime;
            model.Remark     = Remark;
            model.Port       = Port;

            WebDemo.BLL.WebDemo.CollectServer bll = new WebDemo.BLL.WebDemo.CollectServer();
            bll.Add(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }
Exemplo n.º 2
0
 private void ShowInfo(int ServerId)
 {
     WebDemo.BLL.WebDemo.CollectServer   bll   = new WebDemo.BLL.WebDemo.CollectServer();
     WebDemo.Model.WebDemo.CollectServer model = bll.GetModel(ServerId);
     this.lblServerId.Text   = model.ServerId.ToString();
     this.lblServerName.Text = model.ServerName;
     this.lblServerType.Text = model.ServerType.ToString();
     this.lblServerIp.Text   = model.ServerIp;
     this.lblWcfUrl.Text     = model.WcfUrl;
     this.lblOperTime.Text   = model.OperTime.ToString();
     this.lblRemark.Text     = model.Remark;
     this.lblPort.Text       = model.Port.ToString();
 }