The SQL Server 2005 Service Pack 2 - Community Technology Preview (CTP) can be downloaded at http://www.microsoft.com/downloads/details.aspx?FamilyID=d2da6579-d49c-4b25-8f8a-79d14145500d&DisplayLang=en Cheers!!!
In this article, we will build a simple windows phone application. We have seen in the earlier blog post on the installation of windows phone SDK. We will see how to create a simple application which will save the contacts on a windows phone. Let’s begin by choosing the Windows Phone Application project as shown below By default the “MainPage.xaml” file is created, we will modify the application title and page title as in the StackPanel as shown below < StackPanel x : Name ="TitlePanel" Grid.Row ="0" Margin ="12,17,0,28"> < TextBlock x : Name ="ApplicationTitle" Text ="Contact App" Style ="{ StaticResource PhoneTextNormalStyle }"/> < TextBlock x : Name ="PageTitle" Text ="My Contacts" Margin ="9,-7,0,0" Style ="{ StaticResource PhoneTextTitle1Style }"/> StackPanel > We will add the application icons add, delete ...
While adding a controller in ASP.NET MVC 3 application, you might get a error “Unable to retrieve the metadata for …”. This error is due to the incorrect connection string name or the connection string in the web.config. I had encountered the same error and the issue was that the name of my DBContext was different from that of the web.config connection string name. When I made it same it was able to create the controller.
Comments