Contents tagged with Visual Studio 2010
-
Visual Studio Productivity Tips
These are some tips in Visual Studio that will help you be more productive. Below are the details of the session:
-
Attach to IISExpress process from Visual Studio
With VS2010 SP1, you can attach an application process to IISExpress to enable debugging of an application. Here’s how:
-
Executing SQL queries on SQL CE 4 through Entity Framework
In my previous blog, I wrote about how to use inheritance through entity framework on SQL CE database. In this blog however, I’ll explore how you can run a typical SQL query statement on the database table and read/write the values. I will build on the application that I used in the last article.
-
Entity Framework Model Inheritance with SQL CE 4
For some (unknown) reason, I’ve been curious to work with SQL CE, just hadn’t gotten a chance to work with it. If you’re not familiar with what SQL CE is all about, go through this article from Scott Gu.
-
VS2010 crashes fixed with Productivity Power Tools upgrade
I’m guessing people have at least heard of Productivity Power Tools plug-in for Visual Studio. If not, I strongly recommend you give it a shot.
-
HTML5-MVC application using VS2010 SP1
This is my first attempt at creating HTML5 pages. VS 2010 allows working with HTML5 now (you just need to make a small change after installing SP1). So my Razor view is now a HTML5 page.
-
Getting (partial) color on Razor pages
It definitely looks dull and drab without the color-coding. So, for those who cannot wait till the next bits come out, here’s one way.
-
‘forr’ shortcut in Visual Studio 2008/2010
I hit upon this new shortcut key for a ‘for’ loop.
-
VS 2010 Productivity Power Tools
I finally downloaded the Productivity Power Tools extension for Visual Studio 2010. This is really really cool. To install the extension just double-click the .vsix file and you’ll see it in VS2010 –> Tools –> Options:
-
VS 2010 ASP.NET 4.0 RedirectPermanent does a 301 and not 302
Hi,