Free Ebook Video Training
Showing posts with label __Learnvisualstudio. Show all posts
Showing posts with label __Learnvisualstudio. Show all posts

Sunday, July 12, 2009

Algorithms for Visual Design Using the Processing Language


Algorithms for Visual Design Using the Processing Language
384 pages | Wiley (May 11, 2009) | ISBN-10: 0470375485 | PDF | 7 Mb

As the first book to share the necessary algorithms for creating code to experiment with design problems in the processing language, this book offers a series of generic procedures that can function as building blocks and encourages you to then use those building blocks to experiment, explore, and channel your thoughts, ideas, and principles into potential solutions. The book covers such topics as structured shapes, solid geometry, networking and databases, physical computing, image processing, graphic user interfaces, and more.


D0wn10ad
Mirr0r

Saturday, June 6, 2009

C# Soup To Nuts Webcast Series

http://pic.leech.it/i/aa3db/9247df9visualcsou.jpg

C# Soup To Nuts Webcast Series

This webcast series is devoted to those who want to learn to really use Visual C# and what it can do. Learn from Bill Steele, a renowned expert in software development and featured speaker for Microsoft and NASA.

Bill loves creating the applications that often pop right into his head. Unfortunately, it takes his fingers a little longer to type them in. Bill is MCSD certified and has logged more than 15 years as a software developer. He's given over 200 presentations to date, and is currently developing a NASA flight computer for small aircraft. What's the toughest part of managing a 50-member team? "Those developer types always think they know it all," Bill says with a wink.

Introduction to C#
Join me in this webcast where I kick off an introduction to Microsoft's Newest Programming language, C#. I will explore the basic language contructs and begin to explore what types of applications we can build. This will be the "front door" to a series of webcasts on C# where we will progressivly get deeper and deeper in to this fantastic language.


Visual C# Express
Join me in this webcast where we will introduce you to Visual C# Express. Visual C# Express is a free download from Microsoft that allows you to develop C# applications. We will learn about the powerful IDE features like Code Editor, Compiler, Intellisense and the Debugger. We will also learn about the project system that allows us to build a collection to keep all the files related to our program together.


Class Libraries
C# is a very powerful language, however, it doesn't do everything by itself. Instead, it relies on a hiarchical set of prewritten functions that allows developers to gain access to standard functionality provided by the host operating system. These functions are contained in files called "Class Libraries." Join me while we begin to explore some of the basics of class libraries and learn how C# provides basic functionallity through Class Libraries for developers.


C# Program Structure
C# is the newest programming language from Microsoft. So far, in this series, we've been exploring the basics of C# and Visual C# Express. In this webcast, we will begin to dive deep into just what C# is and how programs written in C# are structured. We'll begin by looking at how the "main" function is defined. We will then look at the basics of the language and how C# assembles the lines of code you write into something meaningful to the runtime.


Language Fundamentals
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn what Types, Variables, Constants, Statements and more are and how to use them.

Branching and Looping
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about iterators, loops and Branching.


Classes and Objects
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about classes, objects and how to use them.


Operator Basics
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about the different kinds of operators and how to use them.


Basic Debugging
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific Visual C# Express features. We will learn about debugging and how the IDE allows you to view what is going on inside your application while it is running.


Arrays and Collections
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about arrays and collections and how we can use them to store and organize data withing our application.


Creating and Manipulating Strings
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about strings and how to create and manipulate them utilizing basic operators as well as the StringBuilder class.


Exception Handling
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn how handles unexpected problems with our application via the robust Exception Handling system built into the .NET Framework. We will learn about Try-Catch blocks and how to correctly handle the different types of exceptions that your application can experience.


Delegates and Events
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about Delegates and Events. Delegates and Events allow us to build applications that can let others know that some type of interesting thing has happened within our application. We will also see how we can even have multiple listeners respond to a single event.


Inheritance and Polymorphism
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine the specific C# language features that allow us to create objects that are "like" other objects. We see this type of coorelation in every day objects and often need to model that in our programs. Inheritance and Polymorphism solve various kinds of problem, including reducing the amount of code we write as well as making it much easier to understand.


C# and the Web
In this webcast, we will see how C# can be used to build applications that target websites. We will learn about ASP.NET and how it relates to C# and see how we can build web pages and controls that allow us to reuse our code.


Custom Web Controls
Join me in this webcast where I will teach you about building basic ASP.NET controls in C#. C# and ASP.NET together bring us a powerful platform for developing web applications, but sometimes, we need to think about the application as a whole. Code reuse is on of those important features of application development that can significantly reduce our development time. In this webcast, we will see how we can use User Controls and Custom Controls to help us trim that development time down.


C# and Windows Applications
Join me in this webcast where I will teach you about building basic Windows Applications. The basic window class we use in C# is the Form. In this webcast, we will explore the System.Windows.Form object and see how we can expand it and utilize it to suite our exact needs.


Custom Controls
In the previous webcast in this series, I talked about using C# standard Windows form object. However, some applications require a user interface that is unique or different than the standard forms. In this webcast, we will explore some of the more advanced features of Windows Forms development, such as GDI+ that allow us to tailor the user interface to exactly what our applicaiton needs.


C# and Windows Presentation Foundation
Join me in this webcast where I will discuss how to take advantage of Windows Vista's new presentation system, Windows Presentation Foundation (aka WPF) with C#. WPF allows our applications to include stunning graphics and enhanced user experience functionallity that was unatainable in the past.


C# and SQL Server 2005
Join me in this webcast where I will discuss how to include data access features in your applications. I will specifically discuss how to integrate SQL Server 2005 database functionallity directly into your web and Windows based applications. C# allows us to programatically get direct access to SQL Server data. In this webcast, we will look at the various features in C# that allow us to develop against SQL Server 2005 and other data sources.


C# and Game Development
Join me in this webcast where I will discuss game development with C#. C# can be used to build a variety of software, but one of the most overlooked types of programs is games. In this webcast, I'll discuss XNA Game Studio Express. XNA is a gaming framework available for Windows as well as for the XBox 360. In this session, we'll see how XNA Game Studio and Microsoft Visual C# Express allow you to develop stunning 3D games with ease.


C# Application Deployment Options
Join me in this final webcast in the C# Soup To Nuts series, where we will discuss the various deployment options for your applications. Writing an application can be a very tedious task, but deploying it can be a greater challenge. In this webcast, we'll look at the various deployment options you have, we'll see how they work and afterwards, you will have the information you need to sucessfully deploy your own applications.

Download

http://uploading.com/files/HWTHTTEH/CSharp_Video_Tutorials.part11.rar.html
http://uploading.com/files/QX8RY7FE/CSharp_Video_Tutorials.part10.rar.html
http://uploading.com/files/EKGSMM3K/CSharp_Video_Tutorials.part09.rar.html
http://uploading.com/files/KNN37BEN/CSharp_Video_Tutorials.part08.rar.html
http://uploading.com/files/5LVR39VH/CSharp_Video_Tutorials.part07.rar.html
http://uploading.com/files/H16P8MR6/CSharp_Video_Tutorials.part06.rar.html
http://uploading.com/files/ZOCZEOS2/CSharp_Video_Tutorials.part05.rar.html
http://uploading.com/files/O3UTMNR0/CSharp_Video_Tutorials.part04.rar.html
http://uploading.com/files/E82WJGNO/CSharp_Video_Tutorials.part03.rar.html
http://uploading.com/files/4FPYG4UV/CSharp_Video_Tutorials.part02.rar.html
http://uploading.com/files/V4MCESNZ/CSharp_Video_Tutorials.part01.rar.html

Mirror easy-share:
http://www.easy-share.com/f/1326006059/CSharp_Video_Tutorials

Mirror Rapidshare:
http://rapidshare.com/files/241260660/CSharp_Video_Tutorials.part11.rar
http://rapidshare.com/files/241260880/CSharp_Video_Tutorials.part04.rar
http://rapidshare.com/files/241260883/CSharp_Video_Tutorials.part07.rar
http://rapidshare.com/files/241260912/CSharp_Video_Tutorials.part01.rar
http://rapidshare.com/files/241261039/CSharp_Video_Tutorials.part02.rar
http://rapidshare.com/files/241261180/CSharp_Video_Tutorials.part03.rar
http://rapidshare.com/files/241261193/CSharp_Video_Tutorials.part09.rar
http://rapidshare.com/files/241261227/CSharp_Video_Tutorials.part06.rar
http://rapidshare.com/files/241261308/CSharp_Video_Tutorials.part08.rar
http://rapidshare.com/files/241261349/CSharp_Video_Tutorials.part10.rar
http://rapidshare.com/files/241262037/CSharp_Video_Tutorials.part05.rar

Mirror Hotfile
http://hotfile.com/dl/5237922/632b7a8/CSharp_Video_Tutorials.part01.rar.html
http://hotfile.com/dl/5237929/2c071d3/CSharp_Video_Tutorials.part02.rar.html
http://hotfile.com/dl/5237936/285d6e8/CSharp_Video_Tutorials.part03.rar.html
http://hotfile.com/dl/5237945/1ef6e9c/CSharp_Video_Tutorials.part04.rar.html
http://hotfile.com/dl/5237958/57b0eaa/CSharp_Video_Tutorials.part05.rar.html
http://hotfile.com/dl/5237969/3e96691/CSharp_Video_Tutorials.part06.rar.html
http://hotfile.com/dl/5237980/fddf92f/CSharp_Video_Tutorials.part07.rar.html
http://hotfile.com/dl/5237989/04a4c13/CSharp_Video_Tutorials.part08.rar.html
http://hotfile.com/dl/5238000/a935855/CSharp_Video_Tutorials.part09.rar.html
http://hotfile.com/dl/5238007/a7e703a/CSharp_Video_Tutorials.part10.rar.html
http://hotfile.com/dl/5238011/9287e7b/CSharp_Video_Tutorials.part11.rar.html

Sunday, May 10, 2009

Lynda.com - ASP.NET Essential Training


Thousands of businesses have used ASP.NET to build professional, dynamic web sites. In ASP.NET Essential Training, web developer David Gassner demonstrates the tools needed to build and deploy a dynamic site using ASP.NET 3.5. Covering everything from installing and configuring Visual Web Developer 2008 and SQL Server 2008 Express, to creating web form pages, this course is designed to give beginning and intermediate developers hands-on experience.

download links:

http://hotfile.com/dl/2146443/cd88435/booktraining.net_abedy6.part1.rar.html
http://hotfile.com/dl/2146458/9eec240/booktraining.net_abedy6.part2.rar.html
http://hotfile.com/dl/2146605/c4b4542/booktraining.net_abedy6.part3.rar.html
http://hotfile.com/dl/2146623/656787d/booktraining.net_abedy6.part4.rar.html
http://hotfile.com/dl/2146637/d127c24/booktraining.net_abedy6.part5.rar.html
http://hotfile.com/dl/2146644/770f7c5/booktraining.net_abedy6.part6.rar.html

Mirror 1:
http://rapidshare.com/files/231258661/booktraining.net_abedy6.part6.rar
http://rapidshare.com/files/231258798/booktraining.net_abedy6.part2.rar
http://rapidshare.com/files/231258866/booktraining.net_abedy6.part1.rar
http://rapidshare.com/files/231258888/booktraining.net_abedy6.part3.rar
http://rapidshare.com/files/231259038/booktraining.net_abedy6.part5.rar
http://rapidshare.com/files/231259050/booktraining.net_abedy6.part4.rar

Mirror 2:
http://www.easy-share.com/f/1326000426/Lynda.com_ASP.NET_Essential_Training

Readme
Password default : booktraining.net

Friday, May 1, 2009

ASP.NET 2.0 Controls Series

http://www.learnvisualstudio.net/App_Themes/Default/Images/logo.gif

This series offers a post-beginner in-depth look at several of the important server controls contained in ASP.NET 2.0 and greater. We'll feature Visual Web Developer 2005, but these videos and samples apply just a much to Visual Studio (all versions and editions beyond 2005). Mastering the server controls will spark new creative ideas and save you from re-inventing the wheel trying to re-do existing functionality that you might not even be aware of.

Home: http://www.learnvisualstudio.net/content/series/ASPDotNet_2_0_Controls_Series.aspx

Link download :

1ASPDotNet_2_0_Controls_Series.rar

http://rapidshare.com/files/216826191/1ASPDotNet_2_0_Controls_Series.rar


Password default : booktraining.net

Tuesday, April 28, 2009

VB.NET for Beginners to Programming Workbook and Videos

http://www.learnvisualstudio.net/images/home_top_left.jpg
Home: http://www.learnvisualstudio.net/content/series/vbdotnet_for_beginners_to_programming_workbook_and_videos.aspx
This unique series features 23 lessons, each lesson containing a workbook chapter with questions, exercises, further readings and one or more videos that step an absolute beginner through learning the most fundamental Visual Basic.NET topic matter. If you have never programmed before and want to learn Visual Basic.NET, this is a great place to start.

Anatomy of The Curriculum

Each of the "First Time Programmers" series contains two workbooks, a Questions edition and an Answers edition, which is identical to the Questions edition but contains the answers to all the questions in blue text.

Each lesson has one or more parts, as follows:

Lesson Objectives - Easily identify what the goals of the lesson are.

Lesson Text- Typically a few pages explaining the concepts for the lesson. The readings are concise and focus on concepts and ideas that are appropriate for the level you are at. The lessons avoid introducing unused or comple

Videos to Watch- Most lessons contain a video that demonstrates the concepts of the lesson. This is a powerful way to learn because its like watching over the shoulder of an expert while he "shows you the ropes."

Source Code - All source code that is created in the video is available for you to inspect on your own.

Extended Readings - These are links to parts of the Microsoft Developer's Network that are important for you to know. These readings extend the Lesson Text and often get into much more detail.

Definitions- While you are reading through the Lesson Text and the Extended Readings, you will come across many new terms that you should make sure you know.

Lesson Questions - Each lesson will have a number of review questions that re-inforce your new-found knowledge and force you to put it into your own words.

Best Practices - Most of the videos make recommendations that are considered "Best Practices" -- approaches that are tried and true. When available the workbook contains an area to record these Best Practices.

Exercises- Most lessons have a project for you to work on that covers concepts introduced in the readings and the video. The exercise requires you to open Visual Studio.NET and get your hands dirty. If you get stuck, you can watch a video that shows how we would have solved that exercise, including the source code.

The following videos are available for this series:

BEGIN1 - Orientation
Orientation video for this series ... please take the time to watch this first.
Loading Source Code for the BEGIN1 Series
This video explains how to unzip, open and review the source code contained in the BEGIN1_Code.zip file.
Source Code for BEGIN1 Series
This file contains the source code that was used in the videos in the BEGIN1 series and can be used to follow along in your own local copy of Visual Studio.NET. For instructions on how to open the source code projects, please download and watch BEGIN1_LoadingSourceCode.zip.
Workbook QUESTIONS
Includes ONLY the Workbook Questions in PDF format for the ABSOLUTE BEGINNER. Extremely fundamental. PLEASE DO NOT DOWNLOAD IF YOU ALREADY KNOW HOW TO PROGRAM.
Workbook ANSWERS
Includes ONLY the Workbook Answers in PDF format for the ABSOLUTE BEGINNER. Extremely fundamental. PLEASE DO NOT DOWNLOAD IF YOU ALREADY KNOW HOW TO PROGRAM.
Lesson 1 - What is Computer Programming?
Explains the purpose of computer programming languages, compiling code, software layers, benefits of modern programming languages like VB.NET and C#, software development goals and finally some tips for learning Visual Basic.NET. THIS FILE IS JUST A PLACEHOLDER - NO VIDEO IS NECESSARY FOR THIS LESSON.
Lesson 2 - Computer Programming Workflow
Demonstrates the basicss steps of software development workflow, including the purpose of a project and a solution within Visual Studio.NET and the benefit to adding comments within your code.
Lesson 3 - Obtaining the Tools You'll Need
Describes what you'll need to get started and where to find it. Explains the different versions of Visual Basic.NET, and where to download free (legal) versions of Visual Studio.NET as well as ASP.NET Web Matrix. THIS FILE IS JUST A PLACEHOLDER - NO VIDEO IS NECESSARY FOR THIS LESSON.
Lesson 4 - Creating a User Interface
The lessons shows the various controls that are available to Windows Forms applications and how to manupuate a control's properties to change its appearance or behavior using the Property window. Finally, we identify some Best Practices of user interface design.
Lesson 4 - Exercise
Solution to the Exercise for Lesson 4
Lesson 5 - Handling Events
This lesson explains what events are in Windows and how to capture and write code that responds to them in you Windows Forms applications. Finally, it reviews some common events that occur in the lifetime of your applications.
Lesson 5 - Exercise
Solution to Lesson 5 Exercise
Lesson 6 - Setting Properties in Code
This lesson helps you to understand the difference between design time and run time and how to set properties at run time using the dot (.) syntax in the code window.
Lesson 6 - Exercise
Solution for Lesson 6 Exercise
Lesson 7 - Data Types, Variables and Variable Declaration
This lesson defines what data types are and why they are important. It explains what a variable is, why variables need to be declared, and how to assign values to variables. Finally, this lesson will help you understand why and how to do a data type conversion.
Lesson 7 - Exercise
Solution for Lesson 7 Exercise
Lesson 8 - Statements
Statements are the building blocks of code, and this lesson defines what a statement is. Furthermore, it defines what operators are, why they are used, and the families of operators. THIS FILE IS JUST A PLACEHOLDER - NO VIDEO IS NECESSARY FOR THIS LESSON.
Lesson 9 - Procedures - Sub-Routines and Functions
Creating procedures makes your code modular, meaning that it is well organized, re-usable and more easily modifiable. This video demonstrates
Lesson 9 - Exercise
Solution for Lesson 9 Exercise
Lesson 10 - Program Flow
Defines branching and recursion, and the syntax required to accomplish this. Using branching and recursion you can add powerful business logic to your applications.
Lesson 10 - Exercise
Solution for Lesson 10 Exercise
Lesson 11 - Re-Using Code in Modules
Modules are files that contain general-purpose re-usable procedures. This video explains some of the best practices for using modules and explains the concept of scope.
Lesson 11 - Exercise
Solution for Lesson 11 Exercise
Lesson 12 - Object Oriented Programming with Classes
Object Oriented Programming seeks to reduce the complexity of creating large applications by breaking the application down into smaller, manageable classes of code. Each class represents and idea, whether tanglible and concreate (such as a Product or Employee) or conceptual (such as Inventory or Order). This lesson explains how classes are created and how they are used in Visual Basic.NET. THIS FILE IS JUST A PLACEHOLDER - NO VIDEO IS NECESSARY FOR THIS LESSON.
Lesson 13 - Fields, Properties and Methods
Classes are the building blocks of Object Oriented propgramming and classes are comprised of Fields, Properties and Methods. Includes best practices for using
Lesson 13 - Exercise
Solution for Lesson 13
Lesson 14 - Object Lifetime
This lessons defines what constructors and destructors are, and how to create multiple constructors using overloading. It also explains what happens when an object goes out of scope and how it is removed from memory by the Garbage Collector in .NET.
Lesson 14 - Exercise
Solution for Lesson 14 Exercise
Lesson 15 - What is the .NET Framework?
This lesson describes the various parts of the .NET Framework and how they work together. Also explains the concept behind namespaces and how to utilize namespaces within your applications.
Lesson 16 - Keeping Track of Data with Arrays
Explains what an array is, how to dimension and re-dimension an array, how to use recursion with an array and finally how to create multidimensional arrays.
Lesson 16 - Exercise
Solution to Lesson 16 Exercise
Lesson 17 - Obtaining Data from a Text File
This lesson explains how text files are used in some legacy systems to exchange information between departments or companies and how to use the System.IO namespace to open, read from, write to and close text files.
Lesson 17 - Exercise
Solution for Lesson 17 Exercise
Lesson 18 - Obtaining Data from a Database
This lesson begins by explaining what a database is, and the basic concepts of relational databases including tables, rows and columns, relationships and keys. It explains the different ways that you can access a database from .NET - disconnected or connected and how to achieve both using ADO.NET, a class library provided in the .NET Framework.
Lesson 18 - Exercise
Solution for Lesson 18 Exercise
Lesson 19 - Data-binding Data to User Interface Controls
This lesson explains what data-binding is, how to connect to a database in a disconnected manner then set the DataSource and DataMember properties of a DataGrid.
Lesson 19 - Exercise
Solution for Lesson 19 Exercise
Lesson 20 - Inserting, Updating and Deleting Data in a Database
This lesson explains why data-binding is not always preferable when working with data from a database. It explains how to insert, update and delete data with help from the command object and its collection of parameter objects.
Lesson 21 - Handling Exceptions
This lesson explains what exceptions are and how Visual Basic.NET utilizes Structured Exception Handling. It also explains how to throw exceptions from one software layer to another, and the general principles of designing applications with a solid exception handling scheme.
Lesson 22 - Debugging Applications
This lesson shows the power and utility of Visual Studio.NET when attempting to debug your applications.
Lesson 23 - Building an ASP.NET Application
This lesson shows how to use your new Visual Basic.NET skills to create complex web pages that are dynamic and database driven. It begins by explaining how to create a simple ASP.NET application and points out some of the similarities between Windows Forms and Web Forms. Discusses PostBack, Session and Application objects.
Lesson 23 - Exercise
Solution for Lesson 23 Exercise


Link download :

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.013

http://rapidshare.com/files/220262259/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.013

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.001

http://rapidshare.com/files/220262510/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.001

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.002

http://rapidshare.com/files/220262779/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.002

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.003

http://rapidshare.com/files/220717171/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.003

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.004

http://rapidshare.com/files/220721237/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.004

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.005

http://rapidshare.com/files/220723712/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.005

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.006

http://rapidshare.com/files/220725487/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.006

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.013

http://rapidshare.com/files/220727921/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.013

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.007

http://rapidshare.com/files/220728138/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.007

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.009

http://rapidshare.com/files/220728257/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.009

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.008

http://rapidshare.com/files/220728282/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.008

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.012

http://rapidshare.com/files/220728886/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.012

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.011

http://rapidshare.com/files/220728894/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.011

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.010

http://rapidshare.com/files/220730363/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.010

vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.004

http://rapidshare.com/files/220729970/vbdotnet_for_beginners_to_programming_workbook_and_videos.rar.004




Password default : booktraining.net

Thursday, April 23, 2009

AppDev ASP.NET Using Visual C# 2005


In this course, you’ll learn how to use Visual Studio 2005 and Visual C# 2005 to build ASP.NET 2.0 Web pages and XML Web services. You’ll gain an understanding of the new architecture behind ASP.NET 2.0 and how to use the new server controls. You’ll learn to create consistent web sites using Master Pages, to improve performance with output caching, add membership features, configure and deploy ASP.NET applications, to authenticate users and limit their access to resources, direct users using new Site Navigation tools and to handle multi-user data access conflicts.

Download:

AppDev ASP.NET Using Visual C# 2005
http://rapidshare.com/files/224644512/booktraining.net__ASP.NET2005.part24.rar
http://rapidshare.com/files/224644593/booktraining.net__ASP.NET2005.part02.rar
http://rapidshare.com/files/224644606/booktraining.net__ASP.NET2005.part11.rar
http://rapidshare.com/files/224644648/booktraining.net__ASP.NET2005.part17.rar
http://rapidshare.com/files/224644658/booktraining.net__ASP.NET2005.part14.rar
http://rapidshare.com/files/224644662/booktraining.net__ASP.NET2005.part10.rar
http://rapidshare.com/files/224644672/booktraining.net__ASP.NET2005.part20.rar
http://rapidshare.com/files/224644673/booktraining.net__ASP.NET2005.part03.rar
http://rapidshare.com/files/224644675/booktraining.net__ASP.NET2005.part05.rar
http://rapidshare.com/files/224644681/booktraining.net__ASP.NET2005.part06.rar
http://rapidshare.com/files/224644682/booktraining.net__ASP.NET2005.part07.rar
http://rapidshare.com/files/224644683/booktraining.net__ASP.NET2005.part01.rar
http://rapidshare.com/files/224644686/booktraining.net__ASP.NET2005.part04.rar
http://rapidshare.com/files/224644687/booktraining.net__ASP.NET2005.part22.rar
http://rapidshare.com/files/224644688/booktraining.net__ASP.NET2005.part08.rar
http://rapidshare.com/files/224644689/booktraining.net__ASP.NET2005.part09.rar
http://rapidshare.com/files/224644693/booktraining.net__ASP.NET2005.part15.rar
http://rapidshare.com/files/224644694/booktraining.net__ASP.NET2005.part12.rar
http://rapidshare.com/files/224644698/booktraining.net__ASP.NET2005.part18.rar
http://rapidshare.com/files/224644699/booktraining.net__ASP.NET2005.part19.rar
http://rapidshare.com/files/224644702/booktraining.net__ASP.NET2005.part16.rar
http://rapidshare.com/files/224644703/booktraining.net__ASP.NET2005.part13.rar
http://rapidshare.com/files/224644706/booktraining.net__ASP.NET2005.part23.rar
http://rapidshare.com/files/224644707/booktraining.net__ASP.NET2005.part21.rar
Password: netASPUsingCsharp2005video
Exploring AppDev Asp.Net Using VCSharp 2005

http://rapidshare.com/files/114050513/AppdevExploringAsp.NetUsingVCSharp2005.part1.rar
http://rapidshare.com/files/114052671/AppdevExploringAsp.NetUsingVCSharp2005.part2.rar
http://rapidshare.com/files/114054985/AppdevExploringAsp.NetUsingVCSharp2005.part3.rar
http://rapidshare.com/files/114057286/AppdevExploringAsp.NetUsingVCSharp2005.part4.rar
http://rapidshare.com/files/114059582/AppdevExploringAsp.NetUsingVCSharp2005.part5.rar
http://rapidshare.com/files/114062193/AppdevExploringAsp.NetUsingVCSharp2005.part6.rar
http://rapidshare.com/files/114065192/AppdevExploringAsp.NetUsingVCSharp2005.part7.rar
http://rapidshare.com/files/114065309/AppdevExploringAsp.NetUsingVCSharp2005.part8.rar

Password unrar : booktraining.net

Wednesday, April 22, 2009

AppDev - Programming C Sharp (8 CDs)

http://www.appdev.com/images/HomePg-Main.KG.jpg

Microsoft has provided the ASP.NET AJAX Extensions, a set of assemblies based on the .NET Framework 2.0, which makes AJAX style web programming extremely simple. A task that used to take weeks; is now simplified to a drag and drop operation. This course quickly dives into the history of AJAX and the simplification of AJAX made possible with the ASP.NET AJAX Extensions. You’ll learn how to make partial page updates, work with Web Services in JavaScript, advanced AJAX debugging techniques, and more.

In this course, you will learn how to…


Understand the prerequisites for ASP.NET AJAX.
Understand the fundamentals of AJAX, and the benefits of the ASP.NET framework.
Use the ScriptManager and the ScriptManagerProxy controls.
Automatically serve localized resources specific to the browser culture.
Understand The asynchronous communication that drives partial page updates.
Create partial page updates with the UpdatePanel.
Use over 30 control extenders written specifically for ASP.NET AJAX.
Create your own extender controls for code reuse.
Create an entire real world AJAX application from scratch.
Understand the difference between Server Side and Client side debugging.
Understand the difference and benefits of Release vs. Debug scripts
Use an Object-Oriented approach to programming JavaScript.
Embed your JavaScript files as embedded resources to a .NET assembly.
Deploy an ASP.NET AJAX application

Prerequisites: This course assumes you have a basic programming background and basic knowledge of Visual C #, HTML, CSS, JavaScript, and building Web-based applications using Visual Studio 2005.

Link :

http://rapidshare.com/files/152368432/AppDev_C_Sharp_8CD.part01.rar
http://rapidshare.com/files/152375387/AppDev_C_Sharp_8CD.part02.rar
http://rapidshare.com/files/152382625/AppDev_C_Sharp_8CD.part03.rar
http://rapidshare.com/files/152259013/AppDev_C_Sharp_8CD.part04.rar
http://rapidshare.com/files/152263153/AppDev_C_Sharp_8CD.part05.rar
http://rapidshare.com/files/152267493/AppDev_C_Sharp_8CD.part06.rar
http://rapidshare.com/files/152412674/AppDev_C_Sharp_8CD.part07.rar
http://rapidshare.com/files/152420715/AppDev_C_Sharp_8CD.part08.rar
http://rapidshare.com/files/152428475/AppDev_C_Sharp_8CD.part09.rar
http://rapidshare.com/files/152286586/AppDev_C_Sharp_8CD.part10.rar
http://rapidshare.com/files/152292517/AppDev_C_Sharp_8CD.part11.rar
http://rapidshare.com/files/152457254/AppDev_C_Sharp_8CD.part12.rar
http://rapidshare.com/files/152458608/AppDev_C_Sharp_8CD_Coursebook.rar


Password unrar( if needed) : namdatviet

Tuesday, April 21, 2009

Visual Web Developer 2005 Express with Tutorial

Visual Web Developer 2005 Express with Tutorial

Visual Web Developer 2005 Express Edition with Video Tutorials and Projects
More Than 6 Hours Video

This video series is designed specifically for individuals who are interested i in learning the basics of how to create dynamic Web applications using ASP.NET 2.0 and Visual Web Developer 2005 Express Edition in either Visual Basic or C#.
Visual Web Developer 2005 Express Edition provides the developer with everything required to develop advanced ASP.NET 2.0 applications and doesn't even require the standard Internet Information Services (IIS) Web server; in fact, a test Web server is included in the box. So even if you're using Windows XP Home Edition, which ships without IIS, you'll be able to rapidly develop some cool looking ASP.NET 2.0 Web applications.

booktraining.net_VWD.part1.rar
booktraining.net_VWD.part2.rar
booktraining.net_VWD.part3.rar
booktraining.net_VWD.part4.rar
booktraining.net_VWD.part5.rar

video and tutorial:
booktraining.net_Videos_Projects.part5.rar
booktraining.net_Videos_Projects.part3.rar
booktraining.net_Videos_Projects.part1.rar
booktraining.net_Videos_Projects.part2.rar
booktraining.net_Videos_Projects.part4.rar

Password default : booktraining.net

Monday, April 20, 2009

ASP.NET Data Binding in VS.NET

http://www.learnvisualstudio.net/images/home_top_left.jpg
DataBinding allows you to create powerful applications quickly, however you should know what happens behind-the-scenes and how to harness this power. This series shows you how to take advantage of the visual designers, objects, properties and methods and make this such as poweful tool for web developers.

Home: http://www.learnvisualstudio.net/content/series/aspdotnet_data_binding_in_vsdotnet.aspx

Link download :
aspdotnet_data_binding_in_vsdotnet.rar

http://rapidshare.com/files/218774033/aspdotnet_data_binding_in_vsdotnet.rar

ASP.NET_Data_Binding.rar

http://rapidshare.com/files/223525349/ASP.NET_Data_Binding.rar



Password default : booktraining.net

Visual C# 2005 Express Edition for Beginners

http://www.learnvisualstudio.net/images/home_top_left.jpg

Home: http://www.learnvisualstudio.net/content/series/visual_csharp_2005_express_edition_for_beginners.aspx


This video series is designed specifically for individuals who are interested in learning the basics of how to create applications using Visual C# 2005 Express Edition. This includes over 8 hours of video-based instruction that walks from creating your first "Hello World" application to a fully functioning RSS Reader application. Learn how to write your first application today!

The following videos are available for this series:

Creating a Windows Application User Interface
This lessons walks through using the basics of the Visual Studio IDE including the Toolbox and Properties Window in conjunction with controls like the button, label, MenuStrip, StatusStrip, and ToolStrip controls.
Getting Started with Visual C# 2005 Express Edition
This lesson provides an overview of the 16 lesson series, walks through the completed RSS Reader project and shows how to create your first "Hello World" application.
Writing Code to Handle Events and Set Properties
This lesson explains what an event handler is and how you can write code to react to events and how to set properties for controls. You'll also learn how to use IntelliSense, add comments to your code, and use code regions.
Working with Variables, Expressions, Statements, and Operators
This lesson explains what a variable is and how to use them in your applications. You’ll also learn the difference between expressions and statements and how you can use operators, like the addition operator (+) in your code.
Using Iteration and Selection Statements
This lesson explains how you can use conditional logic and looping constructs in your applications. You’ll also learn what an array is and how you can use looping logic to read and write values from an array.
Object Oriented Programming Fundamentals - Part 1
This lesson is broken into two videos and explains the fundamentals of object oriented programming. You’ll learn about the differences between a class and an object as well as how to create and use properties and methods, as well as inheritance and encapsulation.
Object Oriented Programming Fundamentals - Part 2
This lesson is broken into two videos and explains the fundamentals of object oriented programming. You’ll learn about the differences between a class and an object as well as how to create and use properties and methods, as well as inheritance and encapsulation.
Getting to Know the .NET Framework
This lesson looks at the .NET Framework, the large set of classes available to you to use from your applications. You will learn about namespaces and how to use Help to discover classes and find out more about their use.
Obtaining Data from a SQL Server 2005 Express Edition Database
This lesson looks at databases and how they can be used to store information you might need in your applications. In particular, SQL Server 2005 Express Edition is shown.
Databinding Data to User Interface Controls
This lesson looks at how you can connect your applications to databases and enable your application to view and edit the data stored.
Working with XML
This lesson looks at XML and how you can use it in your applications.
Handling Exceptions
This lesson looks at exceptions -- what they are, and why you want to handle them in your code.
The RSS Reader Project - Designing and Planning
This lesson begins the design and building of the RSS Reader application. This project will show you how an application is built, beginning with a blank project, and ending with a finished application that you can share with others.
The RSS Reader Project - Building the UI
This lesson begins the development of the RSS Reader. In this video, you create the main files that will be needed in the project, and rough out the user interface.
The RSS Reader Project - Working with XML and SQL Server 2005 Express Edition Data
This lesson continues work on the RSS Reader project. In this video, you will add the ability to download the RSS files from the Internet. The data access functionality will be roughed out.
The RSS Reader Project - Expanding and Refining Application Functionality
This lesson continues work on the development of the RSS Reader. In this video, the data access code is completed, and further refinements are made.
The RSS Reader Project - Fortifying, Testing and Deploying the Application
In this video, the RSS Reader project is completed. Final coding tasks are done, and the application is packaged for distribution.
Supplimental Readings
70 page eBook provided as supplimental readings for this series.

Link download :
visual_csharp_2005_express_edition_for_beginners.rar.001

http://rapidshare.com/files/221114493/visual_csharp_2005_express_edition_for_beginners.rar.001

visual_csharp_2005_express_edition_for_beginners.rar.002

http://rapidshare.com/files/221115138/visual_csharp_2005_express_edition_for_beginners.rar.002

visual_csharp_2005_express_edition_for_beginners.rar.003

http://rapidshare.com/files/221116526/visual_csharp_2005_express_edition_for_beginners.rar.003

visual_csharp_2005_express_edition_for_beginners.rar.004

http://rapidshare.com/files/221117241/visual_csharp_2005_express_edition_for_beginners.rar.004

visual_csharp_2005_express_edition_for_beginners.rar.005

http://rapidshare.com/files/221123332/visual_csharp_2005_express_edition_for_beginners.rar.005

visual_csharp_2005_express_edition_for_beginners.rar.006

http://rapidshare.com/files/221123978/visual_csharp_2005_express_edition_for_beginners.rar.006

visual_csharp_2005_express_edition_for_beginners.rar.007

http://rapidshare.com/files/221124795/visual_csharp_2005_express_edition_for_beginners.rar.007

visual_csharp_2005_express_edition_for_beginners.rar.008

http://rapidshare.com/files/221124992/visual_csharp_2005_express_edition_for_beginners.rar.008

visual_csharp_2005_express_edition_for_beginners.rar.009

http://rapidshare.com/files/221124984/visual_csharp_2005_express_edition_for_beginners.rar.009

visual_csharp_2005_express_edition_for_beginners.rar.010

http://rapidshare.com/files/221125072/visual_csharp_2005_express_edition_for_beginners.rar.010

visual_csharp_2005_express_edition_for_beginners.rar.011

http://rapidshare.com/files/221125137/visual_csharp_2005_express_edition_for_beginners.rar.011

visual_csharp_2005_express_edition_for_beginners.rar.012

http://rapidshare.com/files/221130245/visual_csharp_2005_express_edition_for_beginners.rar.012

visual_csharp_2005_express_edition_for_beginners.rar.013

http://rapidshare.com/files/221126516/visual_csharp_2005_express_edition_for_beginners.rar.013

visual_csharp_2005_express_edition_for_beginners.rar.014

http://rapidshare.com/files/221126433/visual_csharp_2005_express_edition_for_beginners.rar.014

visual_csharp_2005_express_edition_for_beginners.rar.015

http://rapidshare.com/files/221131686/visual_csharp_2005_express_edition_for_beginners.rar.015

visual_csharp_2005_express_edition_for_beginners.rar.016

http://rapidshare.com/files/221126494/visual_csharp_2005_express_edition_for_beginners.rar.016

visual_csharp_2005_express_edition_for_beginners.rar.017

http://rapidshare.com/files/221261855/visual_csharp_2005_express_edition_for_beginners.rar.017

visual_csharp_2005_express_edition_for_beginners.rar.018

http://rapidshare.com/files/221276406/visual_csharp_2005_express_edition_for_beginners.rar.018

visual_csharp_2005_express_edition_for_beginners.rar.018

http://rapidshare.com/files/221276599/visual_csharp_2005_express_edition_for_beginners.rar.018

visual_csharp_2005_express_edition_for_beginners.rar.019

http://rapidshare.com/files/221276726/visual_csharp_2005_express_edition_for_beginners.rar.019

visual_csharp_2005_express_edition_for_beginners.rar.020

http://rapidshare.com/files/221276732/visual_csharp_2005_express_edition_for_beginners.rar.020

visual_csharp_2005_express_edition_for_beginners.rar.021

http://rapidshare.com/files/221277170/visual_csharp_2005_express_edition_for_beginners.rar.021

visual_csharp_2005_express_edition_for_beginners.rar.022

http://rapidshare.com/files/221277253/visual_csharp_2005_express_edition_for_beginners.rar.022

visual_csharp_2005_express_edition_for_beginners.rar.023

http://rapidshare.com/files/221277409/visual_csharp_2005_express_edition_for_beginners.rar.023

visual_csharp_2005_express_edition_for_beginners.rar.024

http://rapidshare.com/files/221277710/visual_csharp_2005_express_edition_for_beginners.rar.024

visual_csharp_2005_express_edition_for_beginners.rar.025

http://rapidshare.com/files/221277573/visual_csharp_2005_express_edition_for_beginners.rar.025

visual_csharp_2005_express_edition_for_beginners.rar.026

http://rapidshare.com/files/221278746/visual_csharp_2005_express_edition_for_beginners.rar.026

visual_csharp_2005_express_edition_for_beginners.rar.027

http://rapidshare.com/files/221278539/visual_csharp_2005_express_edition_for_beginners.rar.027

visual_csharp_2005_express_edition_for_beginners.rar.028

http://rapidshare.com/files/221278627/visual_csharp_2005_express_edition_for_beginners.rar.028

visual_csharp_2005_express_edition_for_beginners.rar.029

http://rapidshare.com/files/221278575/visual_csharp_2005_express_edition_for_beginners.rar.029

visual_csharp_2005_express_edition_for_beginners.rar.030

http://rapidshare.com/files/221278727/visual_csharp_2005_express_edition_for_beginners.rar.030

visual_csharp_2005_express_edition_for_beginners.rar.031

http://rapidshare.com/files/221278733/visual_csharp_2005_express_edition_for_beginners.rar.031

visual_csharp_2005_express_edition_for_beginners.rar.032

http://rapidshare.com/files/221278799/visual_csharp_2005_express_edition_for_beginners.rar.032



Password default : booktraining.net

Sunday, April 19, 2009

Getting Started with Visual Web Developer 2005 Express Edition

http://www.learnvisualstudio.net/images/home_top_left.jpg
Home: http://www.learnvisualstudio.net/content/series/getting_started_with_visual_web_developer_2005_express_edition.aspx

This video series is designed specifically for individuals who are interested in learning the basics of how to create dynamic Web applications using ASP.NET 2.0 and Visual Web Developer 2005 Express Edition in either Visual Basic or C#.

The following videos are available for this series:

Getting Started with Visual Web Developer 2005 Express Edition
In this lesson, you will begin to get familiar with Visual Web Developer (VWD), and look at the workflow involved in using VWD to build dynamic ASP.NET Web sites.
Creating a Web Forms User Interface
In this lesson, you will explore the various ASP.NET 2.0 server controls available in Visual Web Developer. In addition, you will begin to get familiar with the windows in VWD.
Understanding More About Events and Postback
In this lesson, you will learn how events can be used in your code, and how to react when those events occur.
Understanding Web Application State
In this lesson, you will see how to maintain state in your ASP.NET, including the various objects you can use to store information for your ASP.NET 2.0 applications.
Debugging and Tracing your Website
In this lesson, you will learn how to debug and monitor your ASP.NET 2.0 Web applications.
Working with Stylesheets and Master Pages
In this lesson, you will begin to learn how Style Sheets and Master Pages can be used to maintain consistent appearance for your Web pages.
Databinding to User Interface Controls
In this lesson, you will learn how to display data in your ASP.NET 2.0 Web applications through some of the new databound controls.
Working with the GridView and FormView
In this lesson, you will learn about the GridView and FormView controls and how you can use some of the features of these controls to make editing and displaying of database content easier.
Securing your Web site with Membership and Login Controls
In this lesson, you will explore the new membership capabilities of ASP.NET 2.0. In addition, you will learn about role-based security, and how you can use roles to control access to your Web site.
Configuring, Building and Deploying a Web site
In this lesson, you will see what is required to make your ASP.NET applications available to everyone. This includes configuring, building and deploying your Web site.
ASP.NET 2.0 Quiz Engine Project - Designing and Planning
In this lesson, you will begin to see the creation of the quiz engine. This will allow you to exercise the skills shown in the earlier videos.
ASP.NET 2.0 Quiz Engine Project - Early Development
In this video we begin by creating the project, adding the necessary pages, creating the initial development database design, set-up the membership features, display the questions and temporarily maintain the user's answers to the quiz.
ASP.NET 2.0 Quiz Engine Project - Refining application Functionality
In this video we work through the challenge of saving the quiz results in the database and displaying the test results on the main page and in the process refactoring our database design to be better aligned with our needs.
ASP.NET 2.0 Quiz Engine Project - Enabling Themes, Handling Exceptions and Deploying
In this video we conclude this series of videos by enabling the user to select a visual theme for the application, we add exception handling and comb through the application for improvement opportunities. Finally we briefly discuss the process of deploying the application.


Link download :
getting_started_with_visual_web_developer_2005_express_edition.rar.001

http://rapidshare.com/files/219538958/getting_started_with_visual_web_developer_2005_express_edition.rar.001

getting_started_with_visual_web_developer_2005_express_edition.rar.002

http://rapidshare.com/files/219543313/getting_started_with_visual_web_developer_2005_express_edition.rar.002

getting_started_with_visual_web_developer_2005_express_edition.rar.003

http://rapidshare.com/files/219545609/getting_started_with_visual_web_developer_2005_express_edition.rar.003

getting_started_with_visual_web_developer_2005_express_edition.rar.004

http://rapidshare.com/files/219547920/getting_started_with_visual_web_developer_2005_express_edition.rar.004

getting_started_with_visual_web_developer_2005_express_edition.rar.005

http://rapidshare.com/files/219550155/getting_started_with_visual_web_developer_2005_express_edition.rar.005

getting_started_with_visual_web_developer_2005_express_edition.rar.006

http://rapidshare.com/files/219552445/getting_started_with_visual_web_developer_2005_express_edition.rar.006

getting_started_with_visual_web_developer_2005_express_edition.rar.007

http://rapidshare.com/files/219554711/getting_started_with_visual_web_developer_2005_express_edition.rar.007

getting_started_with_visual_web_developer_2005_express_edition.rar.008

http://rapidshare.com/files/219557180/getting_started_with_visual_web_developer_2005_express_edition.rar.008

getting_started_with_visual_web_developer_2005_express_edition.rar.009

http://rapidshare.com/files/219559752/getting_started_with_visual_web_developer_2005_express_edition.rar.009

getting_started_with_visual_web_developer_2005_express_edition.rar.032

http://rapidshare.com/files/219873039/getting_started_with_visual_web_developer_2005_express_edition.rar.032

getting_started_with_visual_web_developer_2005_express_edition.rar.010

http://rapidshare.com/files/219875557/getting_started_with_visual_web_developer_2005_express_edition.rar.010

getting_started_with_visual_web_developer_2005_express_edition.rar.011

http://rapidshare.com/files/219878212/getting_started_with_visual_web_developer_2005_express_edition.rar.011

getting_started_with_visual_web_developer_2005_express_edition.rar.012

http://rapidshare.com/files/219880667/getting_started_with_visual_web_developer_2005_express_edition.rar.012

getting_started_with_visual_web_developer_2005_express_edition.rar.013

http://rapidshare.com/files/219883180/getting_started_with_visual_web_developer_2005_express_edition.rar.013

getting_started_with_visual_web_developer_2005_express_edition.rar.014

http://rapidshare.com/files/219885674/getting_started_with_visual_web_developer_2005_express_edition.rar.014

getting_started_with_visual_web_developer_2005_express_edition.rar.015

http://rapidshare.com/files/219887990/getting_started_with_visual_web_developer_2005_express_edition.rar.015

getting_started_with_visual_web_developer_2005_express_edition.rar.016

http://rapidshare.com/files/219890566/getting_started_with_visual_web_developer_2005_express_edition.rar.016

getting_started_with_visual_web_developer_2005_express_edition.rar.017

http://rapidshare.com/files/219892927/getting_started_with_visual_web_developer_2005_express_edition.rar.017

getting_started_with_visual_web_developer_2005_express_edition.rar.018

http://rapidshare.com/files/219895224/getting_started_with_visual_web_developer_2005_express_edition.rar.018

getting_started_with_visual_web_developer_2005_express_edition.rar.019

http://rapidshare.com/files/219897610/getting_started_with_visual_web_developer_2005_express_edition.rar.019

getting_started_with_visual_web_developer_2005_express_edition.rar.020

http://rapidshare.com/files/219900128/getting_started_with_visual_web_developer_2005_express_edition.rar.020

getting_started_with_visual_web_developer_2005_express_edition.rar.021

http://rapidshare.com/files/219902771/getting_started_with_visual_web_developer_2005_express_edition.rar.021

getting_started_with_visual_web_developer_2005_express_edition.rar.022

http://rapidshare.com/files/219904994/getting_started_with_visual_web_developer_2005_express_edition.rar.022

getting_started_with_visual_web_developer_2005_express_edition.rar.023

http://rapidshare.com/files/219907358/getting_started_with_visual_web_developer_2005_express_edition.rar.023

getting_started_with_visual_web_developer_2005_express_edition.rar.024

http://rapidshare.com/files/219909664/getting_started_with_visual_web_developer_2005_express_edition.rar.024

getting_started_with_visual_web_developer_2005_express_edition.rar.025

http://rapidshare.com/files/219911995/getting_started_with_visual_web_developer_2005_express_edition.rar.025

getting_started_with_visual_web_developer_2005_express_edition.rar.026

http://rapidshare.com/files/219914262/getting_started_with_visual_web_developer_2005_express_edition.rar.026

getting_started_with_visual_web_developer_2005_express_edition.rar.027

http://rapidshare.com/files/219916488/getting_started_with_visual_web_developer_2005_express_edition.rar.027

getting_started_with_visual_web_developer_2005_express_edition.rar.028

http://rapidshare.com/files/219918795/getting_started_with_visual_web_developer_2005_express_edition.rar.028

getting_started_with_visual_web_developer_2005_express_edition.rar.029

http://rapidshare.com/files/219921208/getting_started_with_visual_web_developer_2005_express_edition.rar.029

getting_started_with_visual_web_developer_2005_express_edition.rar.030

http://rapidshare.com/files/219923674/getting_started_with_visual_web_developer_2005_express_edition.rar.030

getting_started_with_visual_web_developer_2005_express_edition.rar.031

http://rapidshare.com/files/219926443/getting_started_with_visual_web_developer_2005_express_edition.rar.031



Password default : booktraining.net
This site does not store any files on its server.We only index and link to content provided by other sites. In case of any query/objection regarding copyright or piracy, please inform us at youzhny197@gmail.com, we will immediately respond to you.