Exemplo n.º 1
0
    protected void btnSayHello_Click(object sender, EventArgs e)
    {
        Sample.HelloClient proxy = new Sample.HelloClient();

        Page.ClientScript.RegisterStartupScript(
            this.GetType(),
            "js",
            string.Format("alert('{0}')", proxy.SayHello(txtName.Text)),
            true);

        proxy.Close();
    }
Exemplo n.º 2
0
    protected void btnSayHello_Click(object sender, EventArgs e)
    {
        Sample.HelloClient proxy = new Sample.HelloClient();

        Page.ClientScript.RegisterStartupScript(
            this.GetType(),
            "js",
            string.Format("alert('{0}')", proxy.SayHello(txtName.Text)),
            true);

        proxy.Close();
    }