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


 

-
MCTS - .NET Framework 2.0 Windows Applications

 

Core Requirements ( 2 Exams Required)

 Exam #

Course Name

Course #

 

 

70–536

Developing Applications with the .NET Framework 2.0 Foundation (30-hour series; available mid 2006)

2956

70–526

Core Windows Application Development with Visual Studio 2005
(Three days)

Advanced Windows Application Development with Visual Studio 2005
(Two days)

Core Data Access Development with Visual Studio 2005
(Three days)

Advanced Data Access Development with Visual Studio 2005
(Two days; available early 2006)

2546


2547


2541


2542

* Click here to contact Microsoft E-Learning to purchase this course

The Technology Specialist certifications enable professionals to target specific technologies and distinguish themselves by demonstrating in-depth knowledge and expertise in their specialized technologies.

Developers who hold the Microsoft Certified Technology Specialist: .NET Framework 2.0 Windows Applications (MCTS: .NET Framework 2.0 Windows Applications) certification have demonstrated breadth and depth of skills and knowledge of Windows Forms technology, in addition to expertise in data access in Microsoft Windows applications.

Technology Specialists typically pursue careers as Web developers, Windows developers, or enterprise software developers. They may also be developers and system administrators who do not work with the .NET Framework 2.0 daily but who want to show their breadth of technology experience.

Microsoft Skills Assessments for Microsoft Visual Studio 2005 and Microsoft ASP.NET 2.0 will help you focus your exam preparation training, and they can help you find the learning resources that you need to upgrade from Visual Studio .NET and ASP.NET 1.0 and ASP.NET 1.1.

How to Earn Your MCTS:
.NET Framework 2.0 Windows Applications


Candidates for this certification must pass two exams: one focuses on .NET Framework 2.0 foundational skills and the other focuses on Windows-based client development. 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.

If you plan to upgrade from an MCAD or MCSD on .NET certification to a Microsoft Certified Professional Developer certification, you do not need to obtain an MCTS certification first. You will earn the applicable MCTS certifications when you pass the upgrade exam(s) for MCPD: Windows Applications Developer, MCPD: Web Applications Developer, or MCPD: Enterprise Applications Developer.

Resources


Exam 70–536

l MCTS Self-Paced Training Kit (Exam 70-536): Microsoft .NET Framework 2.0 Foundation
(available mid-2006)

l Programming Microsoft Visual C# 2005 Core Reference

l Programming Microsoft Visual Basic 2005 Core Reference

 

Exam 70–526

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

l Programming Microsoft Visual C# 2005 Core Reference

l Programming Microsoft Visual Basic 2005 Core Reference

l Programming Microsoft ADO.NET 2.0 Core Reference

 



 

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