示例#1
0
 protected void Unnamed_Click(object sender, EventArgs e)
 {
     string ip = i.Text.Trim();
     string un = u.Text.Trim();
     string pw = p.Text.Trim();
     string da = GetData();
     BLL.UnameAndPwd up = new BLL.UnameAndPwd(un, pw);
     BLL.Test test = new BLL.Test();
     r.InnerText = test.PostTestData(up, "临床检验数据", da);
 }
示例#2
0
        protected void Unnamed_Click(object sender, EventArgs e)
        {
            string ip = i.Text.Trim();
            string un = u.Text.Trim();
            string pw = p.Text.Trim();
            string da = GetData();

            BLL.UnameAndPwd up   = new BLL.UnameAndPwd(un, pw);
            BLL.Test        test = new BLL.Test();
            r.InnerText = test.PostTestData(up, "临床检验数据", da);
        }
示例#3
0
文件: Test.cs 项目: yandehao1/NEWSZY
        public string PostTestData(BLL.UnameAndPwd up, string test_data_type, Dictionary <string, string> dataDicList)
        {
            string result = FreezerProUtility.Fp_BLL.TestData.ImportTestData(up.GetUp(), test_data_type, dataDicList);

            return(result);
        }