Share via


Microsoft Azure and SQL Database Tutorials

These Microsoft Azure and SQL Database (formerly SQL Azure) tutorials are designed for beginners who have some .NET development experience. Using a common scenario, each tutorial introduces one or two Microsoft Azure features or components. Even though each tutorial builds upon the previous ones, the tutorials are self-contained and can be used without completing the previous tutorials.

The first four tutorials demonstrate how to use roles, Microsoft Azure Storage services, and SQL Database, which are the basics for learning Microsoft Azure.

Note

If you wish to contribute to this page, use the Edit tab at the top (sign-in required).


Tutorials

Return to Top


Before You Begin the Tutorials

Preparing the Local Development Environment

For configuration instructions, see How to Prepare the Microsoft Azure Compute Emulator at http://msdn.microsoft.com/en-us/library/gg433136.aspx

Installing the Tutorial Files

Download the tutorial files from http://archive.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=AzureTutorials&DownloadId=15390. Extract the files to the C root directory. The tutorial files contain the following folders:

  • CodeSnippets contains the code snippets used for developing the application.
  • CompletedSolution contains the completed solution. If you run into a problem, you can compare your code with the code in this folder.
  • GolferMessageBoard contains the application you created in the previous tutorials. This is the application that the current application is based on.
  • TutorialFiles contains the files that you will need to import into your project.

Note: This release of the tutorials only provide the C# code samples.

Installing the Code Snippets

For convenience, much of the code that you need to type while executing the tutorials is available as Visual Studio code snippets.

After installing the tutorial files, you can find the code snippets in the C:\AzureTutorials\Tutorial[#]\CodeSnippets folder.

You must install the code snippets manually by copying the contents from one folder to another for each of the 2 folders listed in the table below.

Copy from Paste to
C:\AzureTutorials\Tutorial[#]\CodeSnippets\Visual Web Developer ..\My Documents\Visual Studio 2010\Code Snippets\Visual Web Developer\My Code Snippets
C:\AzureTutorials\Tutorial[#]\CodeSnippets\Visual C# ..\My Documents\Visual Studio 2010\Code Snippets\Visual C#\My Code Snippets

 Using the Code Snippets

With code snippets, you have all the code you need at your fingertips. You can use the following procedure to add a code snippet:

  1. Right-click where you want to insert the code snippet, and then click Insert Snippet.
  2. Click My Code Snippets or My HTML Snippets, click Microsoft Azure Tutorials, and then click the name of the code snippet you want to insert.

Provisioning Microsoft Azure

In order to complete the deployment lesson in each tutorial, you must sign up for a Microsoft Azure account. For more information, see azure.microsoft.com.

Configuring IE

The Microsoft Azure Platform Management Portal allows you to manage all your Microsoft Azure platform resources from a single location. You must set the IE pop-up blocker to accept pop-ups from this site so that the database manager can be launched.

To configure the IE Pop-up Blocker

  1. From Internet Explorer Tools menu, point to Pop-up Blocker, and then click Pop-up Blocker Settings.
  2. In Address of website to allow, type windows.azure.com, and then click Add.
  3. Click Close.

Return to Top


Other Resources

Return to Top