Esempio n. 1
0
    protected void GetGrants()
    {
        CAServiceClient cas = new CAServiceClient();
        int             key = (int)Session["userkey"];

        GrantInfo[] grants = cas.GetGrantsByPerson(key);
    }
Esempio n. 2
0
    protected void GetGrants()
    {
        CAServiceClient cas = new CAServiceClient();
        int             key = (int)Session["userkey"];

        GrantInfo[] grants = cas.GetGrantsByPerson(key);
        ViewGrantsGridView.DataSource = grants;
        ViewGrantsGridView.DataBind();
    }