我有一个文本框,我想在文本框中捕获Keyup
文本框并在文件后面的代码中获取文本框值,并将 GridView 与从文本框接收的输入绑定。
我不想使用Text_Change
Asp.net 的事件。我希望当用户在 TextBox 中输入任何内容时,该值应该转到后面的代码并通过调用BindGrid
Function来绑定网格
<asp:TextBox ID="txtSearch" runat="server"></asp:TextBox>
protected void BindGrid(string searchvalue)
{
// i want the txtSearch value over here.
}