I have two ValidationSummary controls on one page:
<asp:ValidationSummary ForeColor="Red" Style="margin-left: 1.5%" ID="ValidationSummary"
runat="server"/>
<asp:ValidationSummary ForeColor="Red" Style="margin-left: 1.5%" runat="server"
ValidationGroup="vgOnScreen" />
These are both triggered by one button. Now my problem is, when there in an error for each control, it is displayed with an extra line in between which is inconsistent with the look of the application.
This is what the display looks like:
•This is my first error
•This is my second error
Does anyone know how to get rid of the extra line between two validation summary controls?