How To Install Bootstrap 2.3.2 Through NuGet Package Manager
When you use Visual Studio Express or later and go to Manage NuGet Packages for this solution, you will see that it shows the latest version available to install. At this point, version 3.x has been released.
If you want to use the old 2.3.2 version, look at this: https://www.nuget.org/packages/Twitter.Bootstrap/2.3.2
Run this in the Package Manager Console:
Install-Package Twitter.Bootstrap -Version 2.3.2
This will add the old Bootstrap version you want to your project.
