In this third part of the ASP.NET Data Controls series, I will talk about the DataList control. The DataList control is somewhat a combination of the DataGrid and Repeater controls. It works like the Repeater control, allowing you to create templates so that it can be bound to a data source. It also allows you to edit records, much like the DataGrid control. Using the DataList Control To use the DataList control, drag and drop the DataList control from the...
ASP.NET provides a lot of very strong and effective web controls. One of the most widely used controls is the Validation Summary control. It gives us a neat and clean way to display error messages on the web page. During my current program assignment I came across a problem when I had to disable the Validation Summary control on one button click and enable Validation Summary control on the same or other button click. I know some of you might say OH what a big deal just use...