Archive for July, 2008

ASP.NET 3.5 / IIS 7 / SQL server hosting – one year for free

No Comments » | Wednesday, July 30th, 2008

Quantasoft, a Slovakia hosting company, has a limited offer on their "Mini" hosting plan: a whole one year for free (saving you $48)!

Hosting parameters:

  • 2 GB diskspace for data / mails / database
  • 25 GB/month bandwidth
  • ASP.NET 3.5 and lower + PHP 5
  • IIS 7
  • MS SQL 2005 Workgroup Edition
  • details

This limited offer is for first 100 orders and is valid to 3th August 2008. Quantasoft also provides a free ASP.NET hosting. Enjoy!

(Disclaimer: I am not connected to Quantasoft in any way)

6 ASP.NET MVC books so far?

No Comments » | Friday, July 25th, 2008

Well… yes and no because none of them has been released yet. The only one available is "ASP.NET MVC in Action" from Mannings which is in early access program. Personally I am really curious about "Professional ASP.NET 3.5 MVC" book because Conery & Hanselman & Haack is a very interesting combination of great and famous developers. And what about you?

(more…)

Simple free grey template

No Comments » | Tuesday, July 22nd, 2008

About a year ago I made a simple design for internet project which has never been finished. Because of that I rewrote it recently to become at least a "free theme" (or "open design" or whatever you want to call it). You can use it for any purpose under the condition that the link to my site will be kept (but I am willing to cancel this condition for non-profit upon request).

You can see it as well as download at it’s homepage: http://stribny.name/free-themes/S_simple_grey_theme/.

Validating culture name using LINQ

No Comments » | Tuesday, July 22nd, 2008

Imagine that we have some class (e.g. UserProfile) with Culture property for storing a culture specific string, in other words a culture name.

class UserProfile
{
    private string _culture;

    public string Culture
    {
        get { return _culture; }
        set { _culture = value; }
    }
}

Our goal is to allow only existing culture name to be set and avoid an invalid one. Let’s start by writing unit tests where we will try to assign valid and invalid values to our property (using MSTest):

(more…)

Hostgator is going to host .NET sites in the nearly future