(Rohit Kukreti) Exceptions or errors are unusual occurrences that happen within the logic of an application. You cannot program for every possibility; hence, they are imminent. If an exception occurs within an application, the user is presented with a yellow page that looks ugly. So, how do you deal
Tag: Development
Behind the Scenes: Improvements to Windows Forms Data Binding in the .NET Framework 2.0, Part 2
(Cheryl Simmons) Learn about the generic BindingList and how to extend this generic collection type to add sorting and searching functionality.
.NET random number generators and distributions
(Stefan Troschütz) The idea for this article was already born 2004 when I was working on my bachelor thesis which included the implementation of a simulation and test environment for a flow control algorithm. Due to various reasons I chose to implement it as a managed application developed with C#.
ASP.NET Tip: Control the Layout of Your Input Forms
(Eric Smith) Although many of your input forms will have a fixed number of fields, in some cases you’ll need to vary the number and configuration of your controls. This article demonstrates how to control the layout of your form using a Repeater control and the ItemDataBound event to set various att
Visual Studio 2005 Web Application Projects and Web Deployment Projects
(Rick Strahl) In May, Microsoft released version 1.0 of Web Application Projects, a much needed add-in for Visual Studio 2005. This article sets out why I strongly recommend you check them out if you’re building and deploying VS 2005 / ASP.NET 2.0 web applications.
Tuning .NET, part one: Performance monitors appear
(Colleen Frye) As server-side .NET development becomes more prevalent, Application Performance Management tools are becoming available to fine-tune .NET applications. And, as in the past, it seems that the ability to build new and more sophisticated applications always stays ahead of the ability to
Behind the Scenes: Improvements to Windows Forms Data Binding in the .NET Framework 2.0, Part 1
(Cheryl Simmons) The most important addition to Windows Forms data binding is probably the BindingSource component. The BindingSource component simplifies the developer’s job by providing currency management, change notification and the ability to easily access the members in a bound list. There are
Classes as PHP Functions
(Jacques Noah) A class is a function of PHP that has its roots in object oriented programming. The ability to use classes in PHP has been increasing with later versions. If you want to add the power of classes to your PHP programming, keep reading.
Control Tree Recursion Using ASP.NET 2.0
(Tom Blanchard) Some people may have already read Steve Orr’s Article on control tree recursion, and may be wondering what differences there may be when using the .NET Framework 2.0. When using the .NET Framework 2.0, one may throw all kinds of monkey wrenches into the situation.
Work with VB.NET’s ArrayList methods and properties
(Irina Medvinskaya) The ability to use collections is important in any language and practical for any application. Collections allow you to manage groups of objects. In this article, I’ll look at how to use an ArrayList class, which provides basic functionality that is useful to most applications. I