123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using CLIP.eForm.Consent.Dfh.WebService;
- namespace CLIP.eForm.Consent.Dfh.Web
- {
- public partial class DiagnosysList : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- using (HospitalSvc svc = new HospitalSvc())
- {
- string pid = (this.Request.Params["IO_Pt_ID"] != null) ? this.Request.Params["IO_Pt_ID"] : "";
- string ADdate = (this.Request.Params["IO_ADdate"] != null) ? this.Request.Params["IO_ADdate"] : "";
- ADdate = ADdate.Replace("-", "").Replace("/", "");
- IList<string> result = svc.GetDiagNameList(pid, ADdate);
- rptList.DataSource = result;
- rptList.DataBind();
- }
- }
- }
- }
|