using System; using System.Web; namespace FineUIPro.Web.HSSE.Emergency { public partial class EmergencySupplyView : PageBase { #region 定义项 /// /// 主键 /// public string FileId { get { return (string)ViewState["FileId"]; } set { ViewState["FileId"] = value; } } #endregion #region 加载 /// /// 加载页面 /// /// /// protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { this.btnClose.OnClientClick = ActiveWindow.GetHideReference(); this.FileId = Request.Params["FileId"]; if (!string.IsNullOrEmpty(this.FileId)) { Model.Emergency_EmergencySupply EmergencySupply = BLL.EmergencySupplyService.GetEmergencySupplyById(this.FileId); if (EmergencySupply != null) { ///读取编号 this.txtFileCode.Text = BLL.CodeRecordsService.ReturnCodeByDataId(this.FileId); this.txtFileName.Text = EmergencySupply.FileName; this.txtUnit.Text = BLL.UnitService.GetUnitNameByUnitId(EmergencySupply.UnitId); this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", EmergencySupply.CompileDate); this.drpCompileMan.Text = BLL.UserService.GetUserNameByUserId(EmergencySupply.CompileMan); this.txtFileContent.Text = HttpUtility.HtmlDecode(EmergencySupply.FileContent); } } ///初始化审核菜单 this.ctlAuditFlow.MenuId = BLL.Const.ProjectEmergencySupplyMenuId; this.ctlAuditFlow.DataId = this.FileId; } } #endregion #region 附件上传 /// /// 上传附件 /// /// /// protected void btnAttachUrl_Click(object sender, EventArgs e) { if (!string.IsNullOrEmpty(this.FileId)) { PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/EmergencySupplyAttachUrl&menuId={1}&type=-1", FileId, BLL.Const.ProjectEmergencySupplyMenuId))); } } #endregion } }