I have a textbox which I want it to be fired on Click. I read some forum in which I wrapped in LinkButton. Here is my mockup UI part:
<asp:LinkButton runat = "server" OnClick = "txtAgentName_TextChanged"><asp:TextBox ID="txtAgentName" runat="server"></asp:TextBox></asp:LinkButton>
And this is my code behind:
protected virtual void txtAgentName_TextChanged(object sender, EventArgs e)
{
}
And it seems like it is not firing up! I dont want to use Javascript :-P