(Mark Strawmyer) One of my previous articles, “Accessing Files and Directories,” covered how to get file and directory properties in the 1.0 and 1.1 versions of the .NET Framework. This article serves as a sequel of sorts, focusing on the I/O enhancements in the .NET Framework 2.0 release due out la
Tag: Development
Understanding $_SERVER[’PHP_SELF’], $PHP_SELF, $_SERVER[’REQUEST_URI’] and $_SERVER[’SCRIPT_NAME’] in PHP and when to use what
(Angsuman Chakraborty) The above PHP variables have slight differences which are often ignored, often leading to problems in large scale deployments or product solutions. I have attempted to debug them for you.
Integration Management
(Mark Smith) The impetus for organizations to support business intelligence (BI) and the imperatives of performance management has brought a renewed focus on IT aspects of information management and the required foundation of integration technologies. The nuances of disparate integration technologie
Running Stored Procedures with ASP.NET
(Wayne Freeze) If you’re writing SQL Server database applications (or Oracle or DB2 for that matter), you spend a lot of time building and testing stored procedures, especially those stored procedures that pass and return information through parameters rather than row sets. No matter how much yo
Data Binding Internals
(Dan Green) This article explores the internals of the ASP.NET data binding process. We use a simple example to delve into the interaction between the .NET framework classes and ASP.NET generated code. In the process, the mystery of how the syntax works and why it is so n
ASP.NET 2.0 Themes
(Andrew Flick and Devin Rader) A common problem amongst Web developers is finding ways to make it easy to change the look and feel of their applications without touching the application code. While more developers have moved toward developing Web sites that take advantage of Cascading Style Sheets (
Inheritance 101
(Deborah Kurata) Visual Basic developers had wanted inheritance for what seems like decades. The feature finally made it into VB.NET, making VB.NET an official object-oriented language. By now you are probably already using inheritance in your applications, but are you fully taking advantage of its
The Code Models Of ASP.NET 2.0
(Scott) The typical web form consists of controls (like labels, buttons, and data grids), and programming logic. In ASP.NET 2.0, there are two approaches to managing these control and code pieces: the single-file page model and the code-behind page model. Regardless of which model you choose, it’s i
Diagnose This
(Scott Swigart) Continuing with the VB Fusion theme of “There’s nothing in .NET that you can’t access from VB6”, I want to take some time to dig into the functionality provided by the .NET Framework “System.Diagnostics” classes. In specific, I want to take a look at the very useful “Process” class,
Creating a PHP-Based Content Management System, Part 6
(Peter Zeidman) This month we’ll be finishing up our look at creating a Content Management System by considering good interface design, the creation of a template system, and how we can go about turning what I’ve described in this series into a fully blown system.