<%@ Language=VBScript %> developersDen - Microsoft Certified Windows 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
 

-
MCDP - Windows Developer

 

Core Requirements ( 1 Exams Required)

 Exam #

Course Name

Course #

 

 

70–548

 

 

 

The Microsoft Certified Professional Developer: Windows Developer (MCPD: Windows Developer) certification demonstrates that you have the comprehensive skills that are required to build rich client applications that target the Windows Forms platform using the Microsoft .NET Framework 2.0.

Microsoft Skills Assessments for Microsoft Visual Studio 2005 and Microsoft ASP.NET 2.0 help developers focus their exam preparation training and find learning resources to upgrade from Visual Studio .NET and ASP.NET 1.0 and ASP.NET 1.1.

 

How to Earn Your MCDP:
Windows Developer

MCPD: Windows Developer candidates must first complete the requirements for the MCTS: .NET Framework 2.0 Windows Applications certification (two exams). After they achieve this certification, candidates can earn their MCPD: Windows Developer by passing one additional exam.

If you are a Microsoft Certified Application Developer (MCAD), you can upgrade to the MCPD: Windows Developer certification by taking one upgrade exam. You do not need to obtain the MCTS prerequisite credential if you take the upgrade exam.

The following table provides a complete list of exams and related training resources. For exam dates and specific areas of focus, see individual Exam Preparation Guides as the exams become available.

 
Resources


Exam 70–548

MCTS/MCPD Self-Paced Training Kit (Exams 70-526 and 70-548): Developing Windows-Based Applications (available mid-2006)

CLR via C#: Applied Microsoft .NET Framework Programming, second edition

Debugging, Tuning, and Testing Microsoft .NET 2.0 Applications

 

 

 

 

 

 

 

 

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