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

 

Core Requirements ( 1 Exams Required)

 Exam #

Course Name

Course #

 

 
70–547 N/A N/A

 

The Microsoft Certified Professional Developer: Web Developer (MCPD: Web Developer) certification demonstrates that you have the comprehensive skills that are required to build interactive, data-driven Web applications that use ASP.NET 2.0 for both intranet and Internet uses.

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:
Web Developer

MCPD: Web Developer candidates must first complete the requirements for the MCTS: .NET Framework 2.0 Web Applications credential (two exams). After earning this certification, candidates may earn their MCPD: Web Developer by passing one additional required exam.

If you are a Microsoft Certified Application Developer (MCAD), you can upgrade to the MCPD: Web 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–547

l MCTS/MCPD Self-Paced Training Kit (Exams 70-528 and 70-547): Developing Web Applications
(available mid-2006)

l Programming Microsoft ASP.NET 2.0 Applications: Advanced Topics

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