If you haven’t heard already Microsoft just released version 4.5 of the .NET framework. Go ahead and see for yourself!
Yearly Archives: 2012
In my last post I showed a controller action which contained a lot of boilerplate code. When the action of a controller accepts the id of an entity the first section of code of that action is always … Make sure the id exists, if not show error or 404 […]
I recently started working on a project for work where they use Microsoft Severs. After some consideration I decided to used the ASP.NET MVC framework instead of just going with the .NET web froms framework since I had some experience with MVC frameworks in PHP. Going from PHP to a language like […]
This is my first post. So inorder to test out blogger I am going to post some hello world programs! Java public class Hello { public static void main(String args[]) { System.out.println(“Hello World!”); } } Python print(“Hello World!”) Php echo “Hello World” C++ #include <stdio.h> using namespace std; int main(void) […]