private void BookEditDisplay() { string strWhere = " RecordID='" + this.RecordCode + "' "; DataTable list = this.amAction.GetList(strWhere); if (list.Rows.Count > 0) { DataRow dataRow = list.Rows[0]; this.LbApplyPerson.Text = PTMultiClassesAction.GetNameOfUser(dataRow["UserCode"].ToString()); this.LbApplyDate.Text = Convert.ToDateTime(dataRow["RecordDate"].ToString()).ToShortDateString(); } }
private void BookEditDisplay() { string strWhere = string.Concat(new object[] { " RecordID='", this.RecordCode, "' and LibraryCode='", this.LibraryCode, "' " }); DataTable list = this.amAction.GetList(strWhere); if (list.Rows.Count > 0) { DataRow dataRow = list.Rows[0]; this.txtApplyPerson.Text = PTMultiClassesAction.GetNameOfUser(dataRow["UserCode"].ToString()); this.txtApplyDate.Text = Convert.ToDateTime(dataRow["RecordDate"].ToString()).ToShortDateString(); this.txtRemark.Text = dataRow["Remark"].ToString(); } }
private void BookAddDisplay() { this.txtApplyPerson.Text = PTMultiClassesAction.GetNameOfUser(this.Session["yhdm"].ToString()); this.txtApplyDate.Text = DateTime.Now.ToShortDateString(); }