예제 #1
0
        //shwo all open work card
        protected void RendarCard()
        {
            Garge             garge   = new Garge(Convert.ToInt32(Session["UserID"]));
            List <RepairJobl> listTop = garge.GetTeratmentsTop3();
            List <RepairJobl> list    = garge.GetTeratments();

            Count.InnerText          = list.Count.ToString();
            Count2.InnerText         = listTop.Count.ToString();
            Open_WordCaed.DataSource = listTop;
            Open_WordCaed.DataBind();
        }