Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

[WebMethod] public string HelloWorld() { return "Hello World"; } [WebMethod] public string saludo(string nombre) { return "Bienvenido "+

nombre; } [WebMethod] public string despedida(string nombre) { return "Hasta luego " + nombre; } } }

Public Class Form1 Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim servi As New miservicios.miservicioSoapClient MsgBox(servi.saludo(TextBox1.Text)) End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim servi As New miservicios.miservicioSoapClient MsgBox(servi.despedida(TextBox1.Text)) End Sub End Class

You might also like