示例#1
0
 protected void Button1_Click(object sender, EventArgs e)
 {
     CompanyService.CompanyPublicServiceClient client = new CompanyService.CompanyPublicServiceClient("BasicHttpBinding_ICompanyPublicService");
     Label1.Text = client.GetPublicInformation();
 }
示例#2
0
 protected void Button1_Click(object sender, EventArgs e)
 {
     CompanyService.CompanyPublicServiceClient client = new CompanyService.CompanyPublicServiceClient("BasicHttpBinding_ICompanyPublicService");
     Label1.Text = client.GetPublicInformation();
 }
示例#3
0
 public ContentResult GetPublicInformation(string submitButton)
 {
     CompanyService.CompanyPublicServiceClient client = new CompanyService.CompanyPublicServiceClient("BasicHttpBinding_ICompanyPublicService");
     return(Content(client.GetPublicInformation()));
 }