1

如何将值从文本框传递给自身事件?

 <asp:TextBox runat="server" ID="txtEmail" onblur="SendRequest()">this_text_I_want_to_put_as_param_to_SendRequest</asp:TextBox>
4

1 回答 1

3
<asp:TextBox 
    runat="server" 
    ID="txtEmail" 
    onblur="SendRequest(this.value)">
    this_text_I_want_to_put_as_param_to_SendRequest
</asp:TextBox>
于 2012-08-28T13:34:08.067 回答