Im using ASP.NET LinkButton.I have a LinkButton which calls code behind from onclickn aspx:\[code\] <asp:LinkButton ID="LinkTest" runat="server" onclick="LinkTest_Click" OnClientClick="return false;" >LinkButton</asp:LinkButton>\[/code\]on aspx.cs:\[code\] protected void LinkTest_Click(object sender, EventArgs e) { //code here }\[/code\]As you can see I have set \[code\]OnClientClick="return false;"\[/code\] so that it wont do a postback.The postback does not happens. But the code behind is not fired.I want the code behind to fire and I want no postback when the linkbutton is clicked.How can I do this?Thanks.