Tag: Development

Community

Simplify Your Code with Reflection

(Paul D. Sheriff) Some programming issues are universal. For example, every developer must deal with the question of whether a user has changed any values on a given form, for the purpose of determining whether the data must be saved back to the database. There’s no point saving data back if it hasn

Community

Creating Custom Label Controls

(Brian Mains) The label control is a simple control for rendering output or other HTML-based content. Overall, the label is somewhat limited in what it can do, as compared to the other .NET controls. For instance, a label can only render the text it has been given, and can show/hide that text. What