Caching in an ASP.NET 2.0 Web Application
Explains how to use caching to improve performance in ASP.NET applications.
Speed Optimization with page and server controls, web application settings and coding practices
ASP.NET Applications speed optimizations regarding to use of page and server controls, web application settings and best coding practices
Caching Pages and Application Data in ASP.NET 2.0 with SqlDependency
Overview of the steps necessary to cache Pages or application data based on the new ASP.NET 2.0 SqlCacheDependency features.
ASP.NET Required TextBox (Graphical RequiredFieldValidator)
An ASP.NET custom TextBox control with a built-in RequiredFieldValidator, providing a similar look and feel to the Windows Forms ErrorProvider.
Creating Validator Controls for the CheckBox and CheckBoxList
ASP.NET provides a variety of validation Web controls that can be used to validate a user's form field inputs. Unfortunately, the validation
Web controls do not work with the CheckBox or CheckBoxList Web controls. If you set a validation control's ControlToValidate
property to the ID of a CheckBox or CheckBoxList, the page will throw an HttpException, stating:
"Control 'controlID' referenced by the ControlToValidate property of 'validationControlID' cannot be validated."
There may be times, however, when you need to provide validation for a CheckBox or CheckBoxList. Many Web pages with Terms of Service
include a CheckBox titled "I agree to the above terms" that must be checked before continuing. Likewise, a Web Form may contain
a set of options in the form of a CheckBoxList. Perhaps the user is required to check at least one of these options before
continuing.
In this article we'll create two custom server controls, CheckBoxValidator and CheckBoxListValidator. The download at the end of this article includes both the entire source code and a compiled assembly that you can drop into your ASP.NET 2.0 web applications..
Top 10 Security Vulnerabilities in .NET Configuration Files
Developers often concentrate on writing secure code but leave security vulnerabilities in application configuration files. Discover the most common configuration security problems—and how to avoid them.
Building and Consuming a Dynamic Sitemap in ASP.NET 2.0
You need to build a dynamic sitemap right from a dataset because you don't have static content on your website
User Interface generator for ASP.NET database applications
In web applications, many pages have simple CRUD purposes. This presentation shows how to produce these pages without a single line of code by generating them with description files.
Creating Custom Cache Dependency
ASP.NET 2.0 offers you several ways to set a dependency between a cached item and a file(s), another cached item(s) or SQL Server database table. No doubt they satisfy most of the real world needs. However, at times the features offered by these dependencies are not sufficient. In such cases you can create your own dependency and use it instead of inbuilt ones. In this article you learn how this can be accomplished.
A Simple DataGrid Row Tooltip For Beginners.
A simple DataGrid Row Tooltip for beginners.