Locally it works, I know its the "it works on my machine" syndrome but i cant see why.
Simple web page, fields, required field validators, such as
<asp:textbox id="tbEmail" runat="server" CssClass="field"></asp:textbox> <asp:requiredfieldvalidator id="Requiredfieldvalidator2" runat="server" Display="Dynamic" ControlToValidate="tbEmail" ErrorMessage="Email is required" CssClass="required"></asp:requiredfieldvalidator>
button with
<asp:button id="btnSendRequest" runat="server" Text="Submit" CausesValidation="True"></asp:button>
Locally it triggers and the code doesnt run, on the deployed version the validators dont fire and the code runs.
Should be simple but ive been staring at it for too long.
Thanks people - Tariq