<%@ Language=VBScript %> developersDen - MCTS - .NET Framework 2.0 Web Applications

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 Web 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–528

Core Web Application Development with Visual Studio 2005

(Three days)

Advanced Web 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)  

2543


2544


2541


2542

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

The Technology Specialist certifications let professionals target specific technologies and distinguish themselves by demonstrating in-depth knowledge and expertise in their subject area technologies.

Developers holding the Microsoft Certified Technology Specialist: .NET Framework 2.0 Web Applications (MCTS: .NET Framework 2.0 Web Applications) certification have demonstrated breadth and depth of skills and knowledge of Web application technology and data access in Web applications.

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

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

 

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

Candidates for this certification must pass two exams, one focusing on .NET Framework 2.0 foundational skills and one focusing on Web-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 first obtain an MCTS certification. 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–528

l MCTS/MCPD Self-Paced Training Kit (Exams 70-528 and 70-547): Developing Web 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

l Programming Microsoft ASP.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 %>