using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Data; using System.Text; using System.Web.UI.WebControls; using ServiceReference; public partial class publics : System.Web.UI.Page { public IPowerMettersService services; public string text; protected void Page_Load(object sender, EventArgs e) { services = new PowerMettersServiceClient(); Branch[] bm = services.GetBranchs(); foreach (Branch b in bm) { text = text + "
" + b.ShortName + "
"; } } }