CollegeSource_WSAPI - DEMO

Equivalency Institution List by Account


 NameCityState
View GROSSMONT COLLEGEEL CAJONCA
View KAPLAN UNIVERSITY-COUNCIL BLUFFS CAMPUSCOUNCIL BLUFFSIA
View PURDUE UNIVERSITY GLOBAL-AUGUSTAAUGUSTAME
View PURDUE UNIVERSITY GLOBAL-CEDAR FALLSCEDAR FALLSIA
View PURDUE UNIVERSITY GLOBAL-CEDAR RAPIDSCEDAR RAPIDSIA
View PURDUE UNIVERSITY GLOBAL-DAVENPORTDAVENPORTIA
View PURDUE UNIVERSITY GLOBAL-DES MOINESUrbandaleIA
View PURDUE UNIVERSITY GLOBAL-HAGERSTOWNHAGERSTOWNMD
View PURDUE UNIVERSITY GLOBAL-INDIANAPOLISINDIANAPOLISIN
View PURDUE UNIVERSITY GLOBAL-LEWISTONLewistonME
View PURDUE UNIVERSITY GLOBAL-LINCOLNLINCOLNNE
View PURDUE UNIVERSITY GLOBAL-MASON CITYMASON CITYIA
View PURDUE UNIVERSITY GLOBAL-MILWAUKEEMILWAUKEEWI
View PURDUE UNIVERSITY GLOBAL-OMAHAOMAHANE
View SAN DIEGO MESA COLLEGESAN DIEGOCA
View SAN DIEGO STATE UNIVERSITYSAN DIEGOCA
View UNIVERSITY OF CALIFORNIA-BERKELEYBERKELEYCA


ASP.NET EXAMPLE CODE [VB]

Page load event from the Code-Behind.

Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
    If Not (IsPostBack) Then

        'create the instance of the web service class
        Dim myWebService As New WSAPI_EQPublicView.CollegeSource_WSAPI

        'execute web method to get list of institutions
        Dim myInstitutionListPV As IEnumerable(Of WSAPI_EQPublicView.InstitutionPV)
        myInstitutionListPV = myWebService.GetEquivalencyInstitutionListByAccount(AccessKeyID, [Page], [PageSize])
            
        'bind gridview 
        GridView1.DataSource = myInstitutionListPV
        GridView1.DataBind()

    End If
End Sub

ASP.NET EXAMPLE CODE [C#]

Page load event from the Code-Behind.

protected void Page_Load(object sender, System.EventArgs e)
{
    if (!(IsPostBack)) {

        //create the instance of the web service class
        WSAPI_EQPublicView.CollegeSource_WSAPI myWebService = new WSAPI_EQPublicView.CollegeSource_WSAPI();

        //execute web method to get list of institutions
        IEnumerable<WSAPI_EQPublicView.InstitutionPV> myInstitutionListPV = default(IEnumerable<WSAPI_EQPublicView.InstitutionPV>);
        myInstitutionListPV = myWebService.GetEquivalencyInstitutionListByAccount(AccessKeyID, [Page], [PageSize]);

        //bind gridview 
        GridView1.DataSource = myInstitutionListPV;
        GridView1.DataBind();

    }
}