I have an aspx page, which is opened in a separate window (redirected from master page). I have added some validations to that page. When I click on the submit button, leaving the fields blank the scenario should be like it should show up a message box (validation summary) but contrast to that the page is submitted. Validation Summary tag is as follows:
<asp:ValidationSummary ID="MyValidation"
runat="server"
ShowMessageBox="true"
ShowSummary="false"
EnableClientScript="false"
DisplayMode="BulletList"
Visible="true"
ValidationGroup="Group1"
ForeColor="Red"
Font-Size="9pt"/>
I have set the validationgroup with the same value for the text fields and the submit button as well. It is working in all other scenarios, but not working in the redirected pages.
I have installed FireBug addon to detect the issues through console. But no issues found.