Hi again,
This occurs in every EditXxxx.ascx, SearchXxxxx.ascx. for example:
<td class="content">
<asp:textbox id="tbxUnitOrder" runat="server" maxlength="20" size="20" Text='<%# Bind("UnitOrder") %>' ValidationGroup="InsertValidations" CssClass="required"/> * <asp:RegularExpressionValidator ID="valUnitOrder" runat="server" ValidationGroup="InsertValidations" ControlToValidate="tbxUnitOrder" Display="dynamic" ValidationExpression="\+?(\d) CssClass="required"" ErrorMessage="Invalid value"/> <asp:RequiredFieldValidator ValidationGroup="InsertValidations" ID="reqUnitOrder" runat="server" ControlToValidate="tbxUnitOrder" Display="Dynamic" ErrorMessage="Required" />
</td>
I found the problem when trying to edit an existing item: the correct integer value entered was refused.
I'm using LLBLGen Pro 2.0.0.0 Final freshly upgraded to release "Feb 14th, 2007".
Didier