What is validationsummary server control? where it is used ?
Answer / gitam singh
The ValidationSummary control allows you to summarize the error messages from all validation controls on a Web page in a single location. The summary can be displayed as a list, a bulleted list, or a single paragraph, based on the value of the DisplayMode property. The error message displayed in the ValidationSummary control for each validation control on the page is specified by the ErrorMessage property of each validation control. If the ErrorMessage property of the validation control is not set, no error message is displayed in the ValidationSummary control for that validation control. You can also specify a custom title in the heading section of the ValidationSummary control by setting the HeaderText property.
You can control whether the ValidationSummary control is displayed or hidden by setting the ShowSummary property. The summary can also be displayed in a message box by setting the ShowMessageBox property to true.
Is This Answer Correct ? | 0 Yes | 0 No |
What are the contents of cookie?
How can you get public key information?
Code for scolling in gridview
What is is post back property in asp net?
What is the lifespan for items stored in ViewState?
What's the difference between viewstate and sessionstate?
in database table is thier . in that table fields are photoid , photoname,photo... i want display image in the gridview
what is silver light when will we use silver light,
How do you register a .NET assembly?
What is asp.net ajax?
What the use of Form Authentication and windows Authentication?
I have around 200+ controls in a page. Each of the sets of controls are kept in divs and when header div is clicked, only those div controls pertaining to that header div will be displayed. Rest of the divs are kept invisible. When the page loads, all these 200+ controls are loaded simultaneously, that consumes much of the time. What my requirement is I want to get the div1 controls loaded when the page loads and rest of the div controls should be loaded asynchronously. it should not be loaded with page load, so that time for loading the page can be much minimised. Hope u understood my question and pls help me out with a solution asap....