What are validator? Name the Validation controls in asp.net?
How do u disable them?
Answer Posted / dilip
In addition of the above answer, it is interesting to know
the "Turning off Client-side Valiation".
Because validation server contols provide clients with
client-side validations automatically, you might, at times,
want a way to control the behavior.
It is quite possible to turn off the client-side
capabilities of these controls so that they don't
independently send client-side capabilities to the
requestor. U can turn off this functionality.
The first is at the control level. Each of the validation
server controls has a property called EnableClientScript.
This property is set to True by default, but setting it to
False prevents the control from sending out a Javascript
function for validation on the client. Instead, the
validation check is done on the server.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the different types of proxy patterns?
Explain the difference between dataset and datareader.
In which event of the page life cycle, is the viewstate available?
What is the concepts of globalization and localization in .net?
Apart from IDE what are the enhancements in asp.net 2.0?
What is the namespace to create thread in .net?
What is authentication in asp.net?
What is a nested masterpage in asp.net 2.0? Can there be a master page inside a masterpage?
Where is the view state data stored in asp net?
What is client side state management?
What is the difference between web.config and machine.config in ASP.NET?
How can exception be handled with out the use of try catch?
What are main return types supported in Web API?
Explain how caching in asp.net 2.0 is different from caching in asp.net 1.1?
What are the event handlers that we can have in global.asax file?