<%@ Language=VBScript %> developersDen - Microsoft Certified Application Developer

Newsletter

click here for the
Digressions Newsletter


Customer List

 

Student Quotes

developersDen technical training and consulting services praised by students across the country


 


 

         
-
D-U-N-S Number: 170940857

 


-


<< Click here to return to Certification Tracks
 

-
MCAD

 

Core Requirements ( 2 Exams Required)

 Exam #

Course Name

Course #

 

Web/Windows Application Development  (1 Exam Required)

70-305

Developing Microsoft ASP.NET using Visual Studio .NET

Programming with Microsoft Visual Basic .NET

Programming with Microsoft ADO.NET

2310

2373

2389

70-315

Developing Microsoft ASP.NET using Visual Studio .NET

Programming with C#

Programming with Microsoft ADO.NET

2310

2124

2389

70-306  

Developing .NET Applications for Windows (VB.NET)

Programming with Microsoft Visual Basic .NET

Programming with Microsoft ADO.NET

2565

2373

2389  

70-316

Developing .NET Applications for Windows (C#.NET)

Programming with Microsoft ADO.NET

2555

2389

 

XML Web Services and Server Components Development (One Exam Required)

70-310

Or

70-320

 

Developing XML Web Services Using Microsoft ASP.NET

Developing Component-Based Applications Using Microsoft .NET

Programming with Microsoft ADO.NET

Programming with XML in the Microsoft .NET Framework

2524

2557

2389

2663

 

Electives (1 Exam Required)

70-230

Developing and Deploying Microsoft BizTalk Server

2379

70-234

Deploying and Managing Microsoft Commerce Server 2000

2185

70-229

Programming a Microsoft SQL Server 2000 Database

2073

 

 

 

 




 

 

 

 

 

 






 

 

 

 

 

 

 

 

 

 


 

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 %>