OnClientClick code preventing validation from working

ShadowAssassin

New Member
I've added code the the OnClientClick property of an asp.net button and now the validation controls are not working. When I remove the OnClientClick code the validation works.How can I get both of them to work?\[code\]<asp:Button ID="btnNext" runat="server" Text="Save & Continue" SkinID="btnContinue" OnClick="btnNext_Click" OnClientClick="_changesMade=false; return true;" ValidationGroup="vgPreMedSchool" Width="176px" />\[/code\]
 
Top