This is my code:
<asp:LinkButton
OnClientClick="Page_ClientValidate(); if(Page_IsValid==false) { console.log('validate'); return false; }"
ID="LinkButton1"
ValidationGroup="validPanel1"
runat="server">Check</asp:LinkButton>
but when I click on it, it try to validate the whole Page. I just need to validate the validPanel1
's Page. Is it possible?