Always remain updated about current software development trends

Articles having tag: ASP.NET 4.0

Execute TSQL statement with ExecuteStoreQuery in entity framework 4.0

I was playing with entity framework in recent days and I was searching something that how we can execute TSQL statement in entity framework. And I have found one great way to do that with entity framework \u2018ExecuteStoreQuery' method. It's executes...

Redirection in URL Routing

In one of the my earlierpostI have written How easily we do URL rewriting in ASP.NET Web forms. In this post I am going to explain redirection in URL Routing.In web application it's a common scenario that we are redirecting our page to the one from the...

My blog post are appearing on MSDN ASP.NET MVC Content Map

Yesterday I was searching something and I got a nice surprise. I have seen my blog post forRSS readeris appearing on MSDN ASP.NET MVC content map. It is really proud movement for me. Following is the link from where you will get this.http://msdn.microsoft.com/en-us/library/gg416514%28v=VS.98%29.aspxOn...

Easy URL routing in ASP.NET 4.0 web forms

In this post I am going to explain URL routing in greater details. This post will contain basic of URL routing and will explain how we can do URL routing in fewer lines of code.Why we need URL routing?Let's consider a simpler scenario we want to display...

Visual Studio 2011 New Editor Features

To add a asp:DetailsView, all I typed was <dv, and it's there for you. You can extract a snippet of html to a user control Just \u2018space' after the backgrouund-color property and you'll see a popup for you to choose from. This is the CSS...

First Review of ASP. NET MVC 4.0 Developer Preview

After so much buzz Microsoft has launched some of the new tools at build conference and ASP.NET MVC 4.0 Developer preview is one of them.How I can install ASP.NET MVC 4.0 Developer preview?There are three ways to install ASP.NET MVC 4.0 Developer previewYou...

Preparing MCTS 70-515 – Web Applications Development with Microsoft .NET Framework 4

One month ago I passed the TS: Web Applications Development with Microsoft .NET Framework 4. In this blog, I want to help all those who want to prepare or are already preparing themselves toward taking this certification exam, by giving some useful learning...

Visual Studio 2010 Color Theme Editor- Customize look of visual studio

We have all love Visual Studio 2010 and I am sure you all want to change color for menus, toolbars and title etc. Today I have found one of the most interesting Extension for Visual studio 2010 from which you can manage all this things. Don't believe me...

Parallel for loop in C# 4.0

Now days we are getting our computer equipped with more and more power even now we are getting quad core processor is also at lower price. Since we have multicore processors are now so we can take advantages of multicore processor with parallel execution in...

Invalid Object Name with Entity framework -EFCodeFirstCTP5

Recently I was working on one sample application with EFCodeFirst with the existing database.After doing all the coding I have found a error "Invalid object name 'dbo.Customers'.".Following was my code for data contextusing System;using System.Collections.Generic;using...