Sign In
Technical Notes
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Common Tasks
Blog Home
Email Blog Author
OK
RSS for comments
RSS for posts
Atom
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Configuration
Dynamic Data
Greetings
Silverlight
Windows Azure
Monthly Archives
Archives
January 2011
(3)
December 2010
(5)
October 2010
(2)
September 2010
(1)
January 2010
(1)
October 2009
(1)
September 2009
(2)
August 2009
(1)
May 2009
(1)
April 2009
(1)
February 2009
(1)
January 2009
(5)
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Technical Notes
Building Windows Azure Service Part7: Service Testing
Posted
over 1 year ago
by
michaelonmsdn
0
Comments
In this post, you will test the GuestBook application in the Development Fabric (aka, devfabric ). The devfabric is a simulated environment for developing and testing Windows Azure applications on your test machine. A Visual Studio project with source...
Technical Notes
Building Windows Azure Service Part6: Service Configuration
Posted
over 1 year ago
by
michaelonmsdn
0
Comments
You can update your service's configuration while the service is running without taking the service offline. The service configuration (.cscfg) file contains the service's configuration. To change configuration information, you can either upload a new...
Technical Notes
Building Windows Azure Service Part5: Worker Role Background Tasks Handler
Posted
over 1 year ago
by
michaelonmsdn
1
Comments
In this post you will create a worker role to read work items posted to a queue by the web role front-end. The worker role performs these tasks: Extract the information about the guest book entry from the message queued by the web role in the Queue Storage...
Technical Notes
Building Windows Azure Service Part4: Web Role UI Handler
Posted
over 2 years ago
by
michaelonmsdn
1
Comments
In this post, you will create the UI that enables the user to perform read, write operations on the GuestBookEntry table. You will update the web role project generated when you created the Windows Azure service. Specifically, you will perform the following...
Technical Notes
Building Windows Azure Service Part3: Table Storage
Posted
over 2 years ago
by
michaelonmsdn
0
Comments
This post shows how to create a project that contains the classes to store guest entries in Windows Azure Table Storage . The Table Storage service offers semi-structured storage in the form of tables that contain collections of entities. Entities have...
Technical Notes
Building Windows Azure Service Part2: Service Project
Posted
over 2 years ago
by
michaelonmsdn
0
Comments
In this post, you will create a Windows Azure service project using Microsoft Visual Studio 2010 . To create the Windows Azure service project From the start menu, select All Programs and right-click Microsoft Visual Studio 2010 . Choose Run as Administrator...
Technical Notes
Building Windows Azure Service Part1: Introduction
Posted
over 2 years ago
by
michaelonmsdn
0
Comments
This is the first of several posts of a walkthrough whose goal is to build a cloud guest book service while exploring Windows Azure basic elements . I wrote these posts to share my experience in learning Microsoft implementation of cloud computing. If...
Technical Notes
Using Windows Azure Development Environment Essentials
Posted
over 2 years ago
by
michaelonmsdn
2
Comments
The Windows Azure development is a simulation environment which enables you to run and debug your applications (services) before deploying them. The development environment provides the following utilities: The development fabric utility. The development...
Technical Notes
Getting Started With Silverlight
Posted
over 2 years ago
by
michaelonmsdn
0
Comments
Silverlight is a .NET Framework development platform for creating rich interactive applications (RIA) for web, desktop, and mobile platforms when online or offline. Silverlight also provides a free plug-in compatible with multiple browsers, devices and...
Technical Notes
Getting Started With Windows Azure
Posted
over 2 years ago
by
michaelonmsdn
2
Comments
Cloud Computing Windows Azure Platform is Microsoft implementation of cloud computing. The National Institute of Standards and Technology defines cloud computing as follows: Cloud computing is a model for enabling convenient on-demand network access to...
Technical Notes
Working With Data (Beginners Guide to Database in ASP.NET Web Pages Part 1)
Posted
over 2 years ago
by
michaelonmsdn
3
Comments
This blog describes how to access data from a database and how to display and update it using ASP.NET Web pages. The final document can be found at this public location: Working With Data . For more information and support related to this post...
Technical Notes
Using the Domain Service in ASP.NET Applications
Posted
over 2 years ago
by
michaelonmsdn
2
Comments
Introduction This post is a preview of the upcoming documentation which describes a new approach for accessing data from an ASP.NET client (Web page) by using the WCF RIA Services domain service . The complete documentation will be available on MSDN....
Technical Notes
ASP.NET Dynamic Data Overview
Posted
over 3 years ago
by
michaelonmsdn
1
Comments
This post is a preview of the up-coming documentation on MSDN. The links in this post will point to the new topics when available. Please, send us your feedback. ASP.NET Dynamic Data lets you create extensible data-driven Web applications by inferring...
Technical Notes
Using Simple Bing Search over SOAP Protocol in an ASP.NET Web Application
Posted
over 3 years ago
by
michaelonmsdn
8
Comments
Introduction This walkthrough shows how to use a simple Bing search as a Web service in an ASP.NET Web application. The Bing search features are invoked by the ASP.NET Web application using SOAP protocol over HTTP. You can also use XML and JSON...
Technical Notes
Walkthrough: Filtering Rows in Tables with a Parent-Child Relationship
Posted
over 3 years ago
by
michaelonmsdn
2
Comments
[Note: This document is a preliminary version of a walkthrough that will be released with the Beta 2 version of Visual Studio 2010 and ASP.NET 4.] Introduction This walkthrough shows how to filter rows in tables with a parent-child relationship...
Technical Notes
Walkthrough: Using BING Service over SOAP Protocol in a Console Application
Posted
over 3 years ago
by
michaelonmsdn
0
Comments
Introduction This walkthrough shows how to use the BING features as a Web service in a client console application. This service, that we'll call BING Service, is invoked by the client console application using SOAP protocol over HTTP. You can also use...
Technical Notes
Walkthrough: Filtering Table Rows in Dynamic Data
Posted
over 3 years ago
by
michaelonmsdn
3
Comments
Introduction This walkthrough shows how to use the Dynamic Data filter templates to create the UI that enables you to choose a column value for selecting (filtering) table rows to display. By default, Dynamic Data includes templates that let you specify...
Technical Notes
Customize Table Rows Filtering in Dynamic Data
Posted
over 3 years ago
by
michaelonmsdn
2
Comments
Introduction ASP.NET Dynamic Data enables you to use page markup to filter the table rows to display and provides the UI that enables the user to enter the values needed for custom row filtering. Dynamic Data will infer the filter template for creating...
Technical Notes
Configuration API: Using System.Configuration.ConfigurationManager
Posted
over 3 years ago
by
michaelonmsdn
1
Comments
Summary: This post shows a console application that uses the ConfigurationManager class. The code example extends what is already in the current documentation to demonstrate the use of this class. The example has been built using Microsoft Visual Studio...
Technical Notes
Querying a Table By a Data Key in Dynamic Data
Posted
over 3 years ago
by
michaelonmsdn
3
Comments
Summary : Query a child table using a column from a parent table. A simpler example of this would be if the column belongs to the same table. This topic uses two tables related by a parent-child relationship. The parent table contains the data key that...
Technical Notes
Querying a Table By a Column using Dynamic Data Filtering
Posted
over 3 years ago
by
michaelonmsdn
1
Comments
Please refer to Customize Table Rows Filtering in Dynamic Data .
Technical Notes
Querying a Table By a Foreign Key using Dynamic Data Filter
Posted
over 3 years ago
by
michaelonmsdn
1
Comments
Summary : This post shows how to query a child table using a column from a parent table in dynamic data filtering. It shows how to use the ForeignKey filter template to query the products using the Category data field. The ForeignKey filter template is...
Technical Notes
Analyzing the Dynamic Data 4.0 Preview
Posted
over 3 years ago
by
michaelonmsdn
1
Comments
Introduction What : Create your own project, called DynamicDataProject, that mimics the SampleProject shipped with ASP.NET Dynamic Data 4.0 Preview available on CodePlex . Why : The objective is to analyze the new Dynamic Data features and build gradually...
Technical Notes
Welcome
Posted
over 3 years ago
by
michaelonmsdn
2
Comments
Welcome to my "technical notes" blog.
Page 1 of 1 (24 items)