I have a TextBox and I want to capture the Keyup
in the Textbox and get the TextBox value at the Code Behind File and Bind The GridView with the Input Received from the TextBox.
I don't want to use Text_Change
Event of Asp.net. i want that when ever user enter anything in the TextBox, that value should go to code behind and bind the grid by calling BindGrid
Function
<asp:TextBox ID="txtSearch" runat="server"></asp:TextBox>
protected void BindGrid(string searchvalue)
{
// i want the txtSearch value over here.
}