Simple question on Validation Summary Control
-
Hey, I have a Compare Validator(more than 1). I want to display a validation summary for it. But when i save it the Error Message for the Compare Validator also get displayed. I have placed the compare validator below the text box...and the validation summary at the bottom of the page. Now i want to display the error message as a summary... but it gets displayed for a compare validator too...and for validation summary too. Heres the code.. What am i doing wrong? and Validation summary...
-
Hey, I have a Compare Validator(more than 1). I want to display a validation summary for it. But when i save it the Error Message for the Compare Validator also get displayed. I have placed the compare validator below the text box...and the validation summary at the bottom of the page. Now i want to display the error message as a summary... but it gets displayed for a compare validator too...and for validation summary too. Heres the code.. What am i doing wrong? and Validation summary...
CompareValidator needs
Display=None
, since the validation failure messages would now be routed to the Validation Summary. Vasudevan Deepak Kumar Personal Web: http://vdeepakkumar.netfirms.com/ I Blog At: http://deepak.blogdrive.com/ -
CompareValidator needs
Display=None
, since the validation failure messages would now be routed to the Validation Summary. Vasudevan Deepak Kumar Personal Web: http://vdeepakkumar.netfirms.com/ I Blog At: http://deepak.blogdrive.com/Thanks a lot