Click here to Skip to main content
15,896,490 members
Articles / Containers / Virtual Machine

Windows Azure Storage

Rate me:
Please Sign up or sign in to vote.
4.92/5 (20 votes)
3 Jan 2011CPOL18 min read 180.2K   2.7K   65  
A simple look at what Windows Azure Storage is and how it can be used
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="Default.aspx.cs" Inherits="AzureStorageWeb._Default" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
    <script language="javascript" type="text/javascript">
        $(document).ready(function ()
        {
            $("[ID$='Date']").datepicker();
            $("[ID$='FileUpload']").css("width", "425px");
        });

    </script>
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <div id="Upload">
        <table>
            <tr valign="top">
                <td>Description:</td>
                <td>
                    <asp:TextBox runat="server" ID="Description" TextMode="MultiLine" Rows="5" Columns="50"></asp:TextBox>
                </td>
            </tr>
            <tr valign="top">
                <td>Date:</td>
                <td>
                    <asp:TextBox runat="server" ID="Date"></asp:TextBox>
                </td>
            </tr>
            <tr valign="top">
                <td>Select file:</td>
                <td><asp:FileUpload ID="FileUpload" runat="server" /></td>
            </tr>
        </table>

        <asp:Button runat="server" ID="SendMessage" OnClick="OnUpload" Text="Upload"/>
    </div>
</asp:Content>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions