Ejemplo n.º 1
0
    protected void BindCeshiOntime()
    {
        string    kechengid = Session["kechengid"].ToString();
        string    username  = ((FormsIdentity)HttpContext.Current.User.Identity).Ticket.Name;
        DataTable dt        = CeshiInfo.GetStuCeshi(username);

        GridView2.DataSource = dt;
        GridView2.DataBind();
    }
Ejemplo n.º 2
0
    protected void GridView2_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        string    kechengid = Session["kechengid"].ToString();
        string    username  = ((FormsIdentity)HttpContext.Current.User.Identity).Ticket.Name;
        DataTable dt        = CeshiInfo.GetStuCeshi(username);

        GridView2.DataSource = dt;
        GridView2.PageIndex  = e.NewPageIndex;
        GridView2.DataBind();
    }