Windows Azure
文章平均质量分 78
天涯海角
专注于SharePoint,BI 及.net平台的一码农。
展开
-
Windows Azure 之 Storage Queue常用操作
1.新建队列(Queue) #region New Queue public void NewQueue(string name) { if (CloudStorageAccount == null) return; try { ClearS原创 2011-11-14 21:07:09 · 1965 阅读 · 0 评论 -
Windows Azure 之 Storage Table 常用操作
1. 新建表(table) #region New Table public void NewTable(string tableName) { if (CloudStorageAccount == null) return; try {原创 2011-11-15 22:03:45 · 2457 阅读 · 0 评论 -
WindowsAzure 之AppFabricCache
WindowsAzure 之AppFabricCache1. 使用 windows azure平台账号(Live ID)登陆 https://windows.azure.com/2. 创建AppFabricCache点击 ”Service Bus, Access Control&Caching” 导航 选择AppFabric 下的 Cache 节原创 2011-11-09 21:25:08 · 1338 阅读 · 0 评论 -
一步一步 Sql Azure
一步一步 Sql Azure 1. 使用 windowsazure 平台账号登陆 https://windows.azure.com/2. 新建Sql Azure Server 3. 新建数据库 4. 为Sql azure server 添加防火墙规则,只有将本机添加到规则里才能从本机连接到该Sqlazure ser原创 2011-11-08 22:22:43 · 1158 阅读 · 0 评论 -
Windows Azure 之 Hello World
Windows Azure 之 HelloWorld本文将介绍如何创建并部署一个Hello World的云应用程序。条件准备:1. 注册一个Azure平台的账号 http://www.microsoft.com/windowsazure/free-trial/(PS: 需要一个LiveID的账号,一张有visa功能的信用卡号, 一账单寄送地址暂不支持大陆地址)2. 有Vista 以原创 2011-11-03 22:57:40 · 2890 阅读 · 2 评论 -
WindowsAzure 之 Storage
WindowsAzure 之 Storage1. 创建Storage account a. 使用Windows Azure 账号(LiveID)登陆 https://windows.azure.comb. 点击 导航节点 ”Hosted Service, Storage Accounts & CDN”c. 点击二级导航节点 “Storag原创 2011-11-10 21:37:20 · 1811 阅读 · 0 评论 -
Windows Azure 之 Storage Blob 常见操作
1.新建Containerpublic void NewContainer(string name, int access /* 2=public container, 1=public blob, 0=private */) { if (CloudStorageAccount == null) return; name = N原创 2011-11-13 20:22:09 · 2400 阅读 · 0 评论