Exemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack & Session["UserID"] != null)
     {
         Garge             garge   = new Garge(Convert.ToInt32(Session["UserID"]));
         RepairJobl        allJobs = new RepairJobl();
         List <RepairJobl> data    = allJobs.AllHistory(Session["UserID"].ToString());
         ShwoHistory.DataSource = data;
         ShwoHistory.DataBind();
     }
 }