protected void BioIndicators(object sender, DirectEventArgs e)
 {
     Session["PAT_ID"] = e.ExtraParams["pat_id"].ToString();
     Window2.Show();
     Window2.Loader.SuspendScripting();
     Window2.Loader.Url            = "Information/Biochemical_Indicators_list.aspx";
     Window2.Loader.DisableCaching = true;
     Window2.LoadContent();
 }
Exemple #2
0
 protected void Dialysis_help(object sender, DirectEventArgs e)
 {
     _PAT_ID        = e.ExtraParams["pat_ic"].ToString();
     Window2.Width  = 700;
     Window2.Height = 700;
     Window2.Show();
     Window2.Loader.SuspendScripting();
     Window2.Loader.Url            = "./Dialysis_help.aspx?sel_PAT_NO=" + _PAT_ID;
     Window2.Loader.DisableCaching = true;
     Window2.LoadContent();
 }
Exemple #3
0
        /// <summary>
        /// 當月使用藥品耗材查詢
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void Dialysis_13(object sender, DirectEventArgs e)
        {
            _PAT_ID           = e.ExtraParams["pat_ic"].ToString();
            USER_ID           = Session["USER_ID"].ToString();
            TextArea1.Visible = true;
//            TextArea1.Text = "USER_ID = " + USER_ID;
            Window2.Width  = 600;
            Window2.Height = 400;
            Window2.Show();
            Window2.Loader.SuspendScripting();
            Window2.Loader.Url            = "./Dialysis_13.aspx?sel_PAT_NO=" + _PAT_ID + "&USER_ID=" + USER_ID;
            Window2.Loader.DisableCaching = true;
            Window2.LoadContent();
        }
 protected void Dialysis_help(object sender, DirectEventArgs e)
 {
     if (helpwiz == "true")
     {
         _PAT_ID = e.ExtraParams["pat_ic"].ToString();
         Window2.Show();
         Window2.Loader.SuspendScripting();
         Window2.Loader.Url            = "./Dialysis_help.aspx?sel_PAT_NO=" + _PAT_ID;
         Window2.Loader.DisableCaching = true;
         Window2.LoadContent();
     }
     else
     {
         ImageCommand ic = new ImageCommand();
         if (ic.CommandName == "DoctorHelp")
         {
             ic.Icon = Icon.BinEmpty;
         }
     }
 }