devxlogo

The Latest

Grokking .NET

rok (pronounced GRAHK) – To grok something is to understand something so well that it is fully absorbed into oneself. Definition via: whatis.techtarget.com and Robert Heinlein I absolutely love the

Heard on .NET Rocks!: Spring.NET

am the host of “.NET Rocks!”, an Internet audio talk show for .NET developers online at www.dotnetrocks.com and msdn.microsoft.com/dotnetrocks . My co-host Rory Blyth (www.neopoleon.com) and I interview the movers

Write Adaptive, Dynamic Code Using Reflection

evelopers aren’t issued crystal balls with their computers, which makes anticipating future changes to business rules or an application’s runtime environment challenging. Fortunately, what your code knows at compile time

Extending Behavior with the Visitor Pattern

Is an architect working for my own company and the president of the Greater Lansing area .NET Users Group (glugnet.org) I’m constantly looking for customers and trying to increase technology

Restricting Implicit Conversion

The compiler performs implicit conversion whenever it feels the need for it. For example: class test{ public: test (int y) : h(y) {} int h;};void func (test t){ cout

Make Your Servlet Code Reusable

Oftentimes, you have a bit of logic or a block of code that’s repeated in all your servlets. Or you may need to check or validate the doGet() or doPost()

iFrames + JSP = Enhanced Web Content Retrieval

recently built a Web application with JavaServer Pages (JSP) and Servlets for a client. While testing the application, the client discovered a page that required her to press a button

How to Prepare for the Microsoft Platform Tests

icrosoft’s Platform Tests help ensure that the many and varied applications available for Windows give users a consistent experience, and avoid application and operating system conflicts. The tests verify basic

MSDN Subscriptions: Are You Ready to Be a Team Player?

n Monday, Microsoft announced that it was changing and simplifying its long-standing MSDN subscription model. The new model accommodates Microsoft’s new Team System software and attempts to match developers’ roles

Reset the Identity for All User Tables

Before you start testing any database-driven application, the first thing you need to do is: Remove the old data from all the tables. Reset the identity back to 1 for

Setting the Password Value in ASP.NET

You can’t set the default password value in the way you set it for a text field: You can set it by using the Value attribute: Related Posts Runtime ModeOpenAI

Using Sort with Arrays

sort, along with many other STL algorithms, works well with arrays. This is because the STL’s concept of an iterator is closely modelled on that of a pointer. The STL

Build a Better ColdFusion Cache Tag

aching is an essential strategy for improving the performance of your applications, and ColdFusion offers much pre-packaged functionality to assist in this area, including a number of application server caching

Use Jython to Exercise Java APIs Without Compiling

ava inherited many of its defining characteristics from C and C++, making it substantially easier to work with. Unfortunately, despite these many syntax improvements, Java still has to be compiled.

XSH: Interactively Manipulate and Analyze XML Data

ML is a flexible language for storing hierarchical data along with its associated metadata. Storing XML data enables you to manipulate and analyze it later. When writing applications, you probably