Skip to main content

Amazon Pricing in Simple Words

Here is a summary of services with relevant links to the pricing details.

File and Media Storage
Amazon S3 Reduced Redundancy Storage (RRS), starts at $0.076 per GB. Learn more about Storage on AWS or find storage management software on AWS Marketplace.

Development and Test Environments on AWS
Set up and configure development and test environments as you need them. Amazon EC2 Micro Instances start at $0.02 per hour. Learn more about Development and Test on AWS or find development and testing tools on AWS Marketplace.

Running a Website or Blog
Reserve an Amazon EC2 Micro Instance for a year and only pay $62 upfront and $3.66 per month. Learn more about Web Apps on AWS or find great content management software including WordPressDrupal, and Joomla on AWS Marketplace.

Running a Static Website
Use Amazon S3 and Amazon CloudFront to run a static website and pay only $1.20 a month to serve 10,000 users 1Mb per month. Learn how to deploy a Static Website on AWS.

Comments

Popular posts from this blog

Reflector for .Net - amaizing how open your .Net source code

Reflector for .Net - Reflector is the class browser, explorer, analyzer and documentation viewer for .NET. Reflector allows to easily view, navigate, search, decompile and analyze .NET assemblies in C#, Visual Basic and IL. At same site there are also other interesting tools like: Resourcer for .NET - Resourcer is an editor for .resources binaries and .resX XML file formats used with the .NET platform Mapack for .NET - Mapack is a .NET class library for basic linear algebra computations.

Asynchronous pages in C# - When to Use It?

When do we need asynchronous page in ASP.net. Suppose you have a website with two web pages. One is your home page which display's a greeting, and the second page displays a large dataset from a database. You have 25 threads in your thread pool. 25 people simultaneously are accessing the database query page, and one additional person comes onto the site to see the home page which has static content on it. http://davidjberman.com/blogs/csharp/archive/2007/08/13/how-to-create-asynchronous-asp-net-pages-using-c.aspx

Dynamic Data Error - "'DropDownList1' has a SelectedValue which is invalid because …"

During my first investigation of Dynamic Data Support at .NET 3.5 environment, I've found that even Microsoft has bug :-))) After the following great instructions of following screen-cast I've finished in few minutes with applications that allows me to maintain all my database tables. The problem is that already at third screen I've played with I got following error message: 'DropDownList1' has a SelectedValue which is invalid because it does not exist in the list of items. Fortunately, I'm not the first who is plying with Dynamic Data at .NET 3.5 so at this blog you can find fix and good explanation of this bug.