I'm doing a webform in .Net 3.5. I have a number of user controls on a page that have validation (mostly required fields) in the user controls. On the main page I have a validation summary.
The validation summary shows the errors correctly. The problem is when there's a field in a user control that is required and I fill it in, the validation message goes away but it still shows in the validation summary.
The code for the validation summary is:
<asp:ValidationSummary ID="valSummary" runat="server" ShowSummary="true"
DisplayMode="BulletList" CssClass="RequiredMessage" EnableClientScript="true"
HeaderText="You must enter a value in the following fields:" />
The validation works correctly just appears as if in a user object it doesn't update unless a postback is done.
Is there something I need to add to the user object?
TIA - Jeff.