예제 #1
0
        public ActionResult findvoucher()
        {
            GenHelper g  = new GenHelper();
            DataTable dt = g.FindVouchers(Request["vtype"], Convert.ToInt32(Session["divid"]));
            DataSet   ds = new DataSet();

            ds.Tables.Add(dt);
            return(PartialView("_findvoc", ds));
        }