Discover the basics of the W3C DOM and learn how to use JavaScript to transverse the nodes within it. (Javascript)
Latest HTML Articles
Using Gradient Shading in Web Pages
Cascading Style Sheets have all kinds of filters that add neat effects to your Web pages. Learn how the gradient filter adds gradient coloring.
FAQ: How to Open a URL or Send an E-Mail from a VB Application
Open a URL or send an e-mail with a click of a button from within a VB application.
Write an FTP Client with VB.NET to Bridge Legacy Software
Paul Kimmel gives you all you need to write a complete implementation of an FTP client in managed code. Once you create a socket and an IPEndPoint, and decipher the data you will receive from the other end point, you are well on your way to writing connected software.
HTML Syntax Highlighting
Create a usercontrol that can be added to a form to provide HTML syntax highlighting in a RichTextBox. (Added: 2-May-1999)
Tricks of Parsing a Page for Links and Images
Learn how to parse out all the links from an HTML page.
Latest Developer Videos
More...Latest CodeGuru Developer Columns
MFC Integration with the Windows Transactional File System (TxF)
The Transactional File System (TxF), which allows access to an NTFS file system to be conducted in a transacted manner through extensions to the Windows SDK API. MFC 10, has been extended to support TxF and related technologies. This support allows existing MFC applications to be easily extended to support kernel transactions.
.NET Framework: Collections and Generics
The original release of the .NET Framework included collections as .NET was introduced to the Microsoft programming world. The .NET Framework 2.0 introduced generics to complement the System.Collections namespace and provide a more efficient and well performing option. Read on to learn more...

Working with Queues and Stacks
Apart from Hashtables, queues and stacks are probably the most common Collection classes. This article explains the ins and outs of queues and stacks.
Implementing a WCF Message Contract
WCF implementations normally take two different approaches; a Document style or an API style. Document style implementations are more flexible and often easier to extend and version. Also, Document style or rather, Message Contract service implementations, work well between systems with a shared message assembly. Jeffrey Juday guides you through architecting a WCF Message Contract implementation.