Working with Data in ASP.NET 2.0 - Efficiently Paging Through Large Amounts of Data

Working with Data in ASP.NET 2.0 - Efficiently Paging Through Large Amounts of DataAs we discussed in the preceding tutorial, paging can be implemented in one of two ways:
- Default Paging – can be implemented by simply checking the Enable Paging option in the data Web control’’s smart tag? however, whenever viewing a page of data, the ObjectDataSource retrieves all of the records, even though only a subset of them are displayed in the page
- Custom Paging – improves the performance of default paging by retrieving only those records from the database that need to be displayed for the particular page of data requested by the user? however, custom paging involves a bit more effort to implement than default paging
Read more

SWsoft VZAgent SOAP Tutorial

SWsoft VZAgent SOAP TutorialBefore you start using this guide, it is important to understand the documentation conventions used in it. For information on specialized terms used in the documentation, see the Glossary at the end of this document.
Read more

User Interfaces in C#: Windows Forms and Custom Controls: Custom Controls

User Interfaces in C# Windows Forms and Custom Controls Custom ControlsCustom controls are a key theme in .NET development. They can help your programming style by improving encapsulation, simplifying a programming model, and making user interface more “pluggable” (i.e., making it easier to swap out one control and replace it with a completely different one without rewriting your form code). Of course, custom controls can have other benefits, including the ability to transform a generic window into a state-of-the-art modern interface.
Read more

Creating a Custom Panel Written in C# - For Implementation in Ascent Capture 7.5

Creating a Custom Panel Written in C# - For Implementation in Ascent Capture 7.5This document will walk you through creating a custom panel written in C#. The custom panel is designed to run in the Quality Control module and provides an easy way to unreject multiple Documents and Pages as viewed in the Batch Contents window. This panel uses a ToolStrip control containing three image and text buttons.
Read more

Silverlight Controls Tutorial

Silverlight Controls TutorialSilverlight 2 has over 3 dozen User Interface (UI) controls. .NET programmers already familiar with ASP.Net or (especially) WPF, will find using the Silverlight controls very natural and straight forward.
Read more

Next Page →