예제 #1
0
        /// <summary>
        /// 아이템 리스트 조회
        /// </summary>
        private void GetContentLog()
        {
            Hashtable ht = new Hashtable();

            ht.Add("adventure_NM", ddlGirin.Value);
            ht.Add("girinCheck", "Y");

            Biz     wBiz = new Biz();
            DataSet ds   = wBiz.GetContentLog(ht);

            gvGirinList.DataSource = ds;
            gvGirinList.DataBind();
        }
예제 #2
0
        /// <summary>
        /// 모험단 지옥파티 아이템 리스트
        /// </summary>
        private void GetContentLog()
        {
            Hashtable ht = new Hashtable();

            ht.Add("adventure_NM", txtName.Text);
            ht.Add("girinCheck", "N");

            Biz     wDac = new Biz();
            DataSet ds   = wDac.GetContentLog(ht);

            gvCount.Text      = ds.Tables[0].Rows.Count.ToString();
            gvList.DataSource = ds.Tables[0];
            gvList.DataBind();

            gvCount2.Text      = ds.Tables[1].Rows.Count.ToString();
            gvList2.DataSource = ds.Tables[1];
            gvList2.DataBind();
        }