using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; using CY.Model; using CY.BLL; using CY.Infrastructure.Common; using CY.Infrastructure.Query; namespace CY.WebForm.Pages.work { //吴辉 //公文基础数据明细 public partial class OA_DocumentDicDetail : BasePage { OA_DocumentDicBLL bll_OA_DocumentDicBLL = null; //初始化 public OA_DocumentDicDetail() { bll_OA_DocumentDicBLL = new OA_DocumentDicBLL(); } //页面加载 protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { InitData(); } } //数据加载 public void InitData() { OA_DocumentDic m_OA_DocumentDic = bll_OA_DocumentDicBLL.GetModelByKeyid(Request["keyid"].ToInt32()); if (m_OA_DocumentDic != null) { this.spanMemberId.InnerText = m_OA_DocumentDic.MemberId.ToString2(); this.spanParType.InnerText = m_OA_DocumentDic.ParType.ToString2(); this.spanParName.InnerText = m_OA_DocumentDic.ParName.ToString2(); this.spanLastUpdateTime.InnerText = m_OA_DocumentDic.LastUpdateTime.ToString2(); this.spanOperator.InnerText = m_OA_DocumentDic.Operator.ToString2(); } } } }