示例#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();
    }
示例#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();
    }