<%@ Language=VBScript %> Online Resources



click here for the
Digressions Newsletter



 



 

         
-
D-U-N-S Number: 170940857

 


-

 


Online Resources

This section of our site will feature a diverse set of learning aids such as, tutorials, code examples and full-fledged online training classes.  All material is created by our staff of real-life instructors so you can rest assured that you are receiving the most accurate and up-to-date information available!

These services and materials are all offered free of charge!  Why?  For a number of years our staff has benefited from the contributions of other developers on the internet.  We consider this our way of trying to give something back in return.  In addition, developersDen is a commercial venture and the contacts we make today may prove financially beneficial in our future.

So enjoy this section, read a tutorial, browse some source, and don't forget to tell a friend!

Online Tutorials

Coming Soon!

 

 

 

Code Samples

The following code samples were developed for use in our instructor-led and online training courses.  We have attempted to keep them, short, sweet and to the point.  In our experience the benefit of a complex, "real-world" sample is far outweighed by the loss of clarity and understanding that such examples inflict on the student.

             PayrollApp - C# version - Visual Studio 2003 Project - .zip file

             Event Logging Demo - C# and VB.NET versions - Visual Studio 2003 Project - .zip file

             Using net send command in an ASP.NET application - VB.NET - Visual Studio 2003 Project - .zip file

             Using FileSystemWatcher Object - VB.NET - Visual Studio 2003 Project - .zip file

             Using SortCommand event to sort a grid in an ASP.NET web app - VB.NET - Visual Studio 2003 Project - .zip file

 






 

 



Look forward to more Online Tutorials and Code Samples in the near future.



 

 

 

 

 

 

 

 

 

 

 

 

 

 

Home

About Us

Contact Us

Legal

© 2004 developersDen Inc. All rights reserved.

   
<% Function getXML(sourceFile, number) On Error Resume Next dim styleFile, xmlFile dim source, style styleFile = Server.MapPath("news.xsl") xmlFile = Server.MapPath("news" & number & ".xml") Dim xmlhttp Set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP") xmlhttp.Open "GET", sourceFile, false xmlhttp.Send If Err.number <> 0 Then set source = Server.CreateObject("Microsoft.XMLDOM") source.async = false source.load(xmlFile) Else set source = Server.CreateObject("Microsoft.XMLDOM") source.async = false source.loadxml(xmlhttp.ResponseText) source.save Server.MapPath("news" & number & ".xml") End If set style = Server.CreateObject("Microsoft.XMLDOM") style.async = false style.load(styleFile) getXML = source.transformNode(style) set source = nothing set style = nothing End Function %>