Hi, i'm working on a web page with a lot of jquery animation on the page load. I also have a contact form, with the "send" button that sends the form data to the clients email. Now, when i press the button, the page posts back and loads (incl the animation at the begining) again.. and i don't want that.. I saw some solutions on the net that require to put the "return false" in the onClientClick attribute, but that disables the code behind in c# to be executed, thus disables the form data to be sant to the desired email.
the code is preety simple
<asp:Button ID="sendButton" runat="server" Text="Send" onclick="sendButton_Click" />
and in the sendButton_Click method in the code behind i have the logic to send the data...
Any help would be appriciated!