-2

我在页面中有几个控件。我需要在 Page 方法中修改这些值。我怎样才能做到这一点?。当我在页面方法中修改这些值时应该反映在页面中吗?

请给我例子。

4

1 回答 1

1

快速示例:

<asp:ScriptManager runat="server" EnablePageMethods="true" />
<!-- or ToolkitScriptManager, but remember to put only one -->

<script type="text/javascript">
    function invokeMethod() {
        x = document.getElementById('<%= TextBox1.ClientID %>').value;
        PageMethods.theMethod(x, OnSuccess, OnFailure);
    }
    function OnSuccess(r) {
        document.getElementById('<%= TextBox1.ClientID %>').value = r;
    }
    function OnFailure(r) {
        alert(r._message);
    }
</script>

    [System.Web.Services.WebMethod()]
    public static string theMethod(string x)
    {
        return x + "!!!";
    }
于 2010-10-05T14:00:43.660 回答