Exemplo n.º 1
0
        /// <summary>
        /// 加载平台信息
        /// </summary>
        private void LoadPlatform()
        {
            ChannelMO _mo = new ChannelMO();

            ChannelEO _eo = _mo.GetByPK(Request.QueryString["Chid"].ToString());

            if (!string.IsNullOrEmpty(_eo.CnName))
            {
                this.txtChannelName.Text    = _eo.CnName;
                this.txtChannelId.Text      = _eo.CnChannelId;
                this.txtDescription.Text    = _eo.CnDescription;
                this.rblState.SelectedValue = _eo.CnState;
            }
        }