Hi,
I have a validation problem
I have a listview, in the edit item template I have two composite controls with a textbox inside
I put a comparevalidator on it
<asp:CompareValidator ID="myCompareValidator" runat="server"
ControlToValidate="mycompositecontrol1" ControlToCompare="mycompositecontrol2"
Operator="GreaterThanEqual" Type="Date" Display="Dynamic" ErrorMessage="there is an error !"
Text="!" ValidationGroup="myValidationGroup" />
It works great !
so I do exactly the same operation in the InserItemTemplate (It's a copy/paste)
but this time, it doesn't work, I have no error message in my validationsummary and near my control to validate!
If you know that problem, help me please
thanks in advance