I made a custom gridView class which inherits from GridView.
public class CustomGridView : GridView {}
It adds a textbox in the footerRow, and I'd like to manage the changed event for this textbox directly in my page, and not in the class.
Something like :
public override void txtSearch_TextChanged(object sender, EventArgs e) { }
How could I do this ?