0
votes
2answers
143 views
Page_ClientValidate() with multiple ValidationGroups - how to show multiple summaries simultaneously?
ASP.NET 2.0. Lets say i have two Validation Groups valGrpOne and valGrpTwo; and two Validation Summaries valSummOne and valSummTwo; Reason for breaking up sections is purely aesthe …
0
votes
1answer
18 views
Data Annotation Validators
Sorry my poor english!
I'm trying to use the data annotation validators to make my validation server-side, I'm driving through this tutorial asp.net site: http://www.asp.net/learn …
0
votes
3answers
48 views
Spring - Best approach to provide specific error messages in a validator from a DAO?
What is the best way to implement a validator in Spring that accesses a DAO object but needs to return different error messages based on the DAO error? Should the DAO method throw …
0
votes
1answer
27 views
Automated Validator Object, Usefulness?
I am mulling over whether I should place metadata in an XML file, then creating an object that automates validation. The reasoning behind this is, adding or removing validation for …
0
votes
2answers
532 views
User created Validator wont call Client side validation Javascript on ‘complex’ user control.
Hi All,
I have created a user control (from System.Web.UI.UserControl), and created my own validator for the user control (from System.Web.UI.WebControls.BaseValidator). Everythin …
0
votes
2answers
126 views
How can I programmatically show the toolTip on a TextInput when a validator returns “invalid”?
I have a form with a TextInput that has a custom Validator. I call the Validator logic and handle the result programmatically. This all works fine, except for one problem. The Text …
2
votes
1answer
25 views
ASP.NET: Writing a custom server-side-only validator
Hi
I want to write a custom validator which doesn't do anything before the user makes a post back (i.e. no JavaScript will be generated for it). The validator should make sure th …
0
votes
3answers
37 views
ASP.NET: ValidationSummary doesn’t display any contents
I'm trying to figure out how the heck the validation summary control of ASP.NET (3.5 I think) works.
<asp:ValidationSummary ID="vldSummary" runat="server" DisplayMode="BulletLi …
0
votes
2answers
387 views
Flex 3 StringValidator Highlight Field
I want to perform simple validation against multiple fields. Please note these fields are not within a mx:Form since the way they are displayed isn't the norm. The validation works …
1
vote
2answers
36 views
Upgrade hibernate-annotations and hibernate-validator
Hi all.
Actually I'm using hibernate-annotations 3.3.1.GA (hibernate 3.2.6.ga) and hibernate-validator 3.0.0.ga but, due to validation problems, I need to upgrade the libraries to …
0
votes
0answers
13 views
Gridview Update Generates Full Page Postback
I have a gridview within an update panel with autogenerateeditbutton=true. Modifying the gridview works fine with partial updates until the following:
1) Any validator is triggere …
0
votes
1answer
17 views
How can I get Ajax and client side validators working with my ASP.Net 1.1 application in Firefox?
Ok, long story short - I've got an ASP.Net 1.1 website, which uses Validator controls and Ajax (ajax.dll, v5.7.22.2)... All of these elements of the site were chosen/implemented be …
1
vote
5answers
137 views
.NET HtmlButton always triggers validators
I have created a server control out of the HtmlButton with validation disabled.
<button runat="server" causesvalidation="false" />
NOT the input button!!!
<input type= …
0
votes
3answers
86 views
Disable all Validator controls on a page
During the early stages of a dev cycle, it's a bit annoying to have all the validation controls enforcing their rules if we just want to move quickly from form to form.
What is th …
1
vote
2answers
122 views
Use a RegularExpressionValidator to limit a word count?
I want to use an ASP.NET RegularExpressionValidator to limit the number of words in a text box. (The RegularExpressionValidator is my favoured solution because it will do both clie …
