Over the last couple of days, I had been working on my presentation and demo for the ct .net user group code camp5. I presented it today at 9.00am. yay! The packet has a code,slides and a CSS…
MVC4
A collection of 5 posts
MVC4 SQL migrations step by step
In my earlier post , I showed how to use code first with the server where the app cant create a database. Now, we are looking to migrate our schema on to the server. It would be nice if it we…
Code first with no create DB permissions on the server
The hosting services or the production database servers do not give create db rights to the app for a lot of reasons. So, when our code first MVC app gets deployed it does not work as it tries to create…
jQuery Ajax is simple to implement
The contact page and create blog are using ajax now. Here's how I did it: -Created Contact Model with Name, Email and Message -Created a controller with two actions Index for the initial view and send(note HttpPost…
Archiving items and a routing lesson
I started rolling up the older blog posts into archive. While doing so, I learned a valuable lesson about routing. We have to put the most specific route first and most general last. It is very easy to make mistake…