Tagged Questions

2
votes
5answers
177 views

What would cause ASP.NET validators not to trigger on a deployed site?

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" ...
1
vote
1answer
193 views

Customize Html.ValidationMessageFor doesn't work in client side

I am working on mvc3 application, i have created a custom validationMessage to validate a simple field. This custom validationMessage only show an div with title and message instead of the default ...
1
vote
2answers
530 views

Client side validation of list in ASP.Net MVC 2

I've used stackoverflow many a time to solve my problems (code related!) but this is the first time I've needed to post a question cause I cannot work out whats wrong. When I enable client side ...
0
votes
1answer
105 views

MVC3 Want Clientside Validation to trigger for two fields when one of the two is modified

I am creating an MVC3 website and added a couple of security questions to the "My MVC Application" Registration routine in the form of dropdown boxes. I created a custom validator to check the second ...
0
votes
0answers
14 views

Clientside Validation triggered by events from another field [closed]

I have two security question select lists. I have a validator on the second one that checks to see the same item is not selected as the first. If I do select the same item, the client validator is ...
0
votes
1answer
1k views

EnableClientValidation on Master Page

I'm trying out ASP.NET MVC 2 Preview and when I use client side validation it all works if the following: <% Html.EnableClientValidation() %> Is used on a content page. If it is on a Master Page ...