📄 missingcatheterremovalpostop.aspx.cs
字号:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using Caisis.DataAccess;
using Caisis.UI.Core.Classes;
namespace Caisis.UI.Modules.Prostate.Reports
{
/// <summary>
/// Summary description for MissingCatheterRemovalPostOp.
/// </summary>
public class MissingCatheterRemovalPostOp : BasePage
{
protected string resultMessage = "";
protected Repeater reportResults;
protected HtmlContainerControl ReportContentBody;
protected string reportTitle;
private string datasetSql;
override protected void Page_Load(object sender, System.EventArgs e)
{
datasetSql = CacheManager.GetDatasetSQL(Session[SessionKey.DatasetId]);
ReportDa da = new ReportDa();
DataSet ds = da.GetMissingCatheterRemovalPatients(datasetSql);
if (ds.Tables.Count > 0)
{
reportResults.DataSource = ds.Tables[0].DefaultView;
reportResults.DataBind();
}
else
{
resultMessage = "There are no patients missing catheter removal.";
}
reportTitle = "Post Operation Patients with Missing Catheter Removals";
ReportContentBody.Attributes.Add("onLoad","top.DataAnalysisContainer.setFormTitle('"+this.reportTitle+"');top.DataAnalysisContainer.MM_showHideLayers('buttonsLayer','','show');");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -