Gunnar Peipman's ASP.NET blog
ASP.NET, C#, SharePoint, SQL Server and general software development topics.
-
Windows Azure: Connecting to web role instance using Remote Desktop
My last posting about cloud covered new features of Windows Azure. One of the new features available is Remote Desktop access to Windows Azure role instances. In this posting I will show you how to get connected to Windows Azure web role using Remote Desktop.
-
Silverlight 5 announced!
Just finished watching Silverlight Firestarter event where ScottGu made a keynote where he told about the future of Silverlight. There were some demos of Silverlight by SAP and IIS Media Server 4.0 new features by Chris Knowlton who demoed how to stream webcam pic to desktop, Windows Phone 7 and iPad. There was also demo about system called dayforce. But let’s go to new stuff now. In this postingI will introduce you fresh news I just got about Silverlight 5 new features.
-
Windows Azure - new portal, new services, new tools
New version of Windows Azure and Windows Azure Portal are now available with new set of tools and training kit. There are also some interesting betas available. In this posting I will introduce you new features of Windows Azure and show you new Windows Azure Portal. Also you will see the configuration of VM instance that runs web applications.
-
Draft: ASP.NET Web Pages with Razor Syntax
Microsoft published draft of e-book ASP.NET Web Pages with Razor Syntax - Beta 3. The book is targeted to everybody who want to build web sites with WebMatrix or Visual Studio using Razor engine. The book is simple and very informative and I already found some interesting topics from it. If you are starting with Razor take a look at this book.
-
Quick introduction to Pex
Pex and Moles is new testing and code analysis technology that is created by Microsoft Research. Pex is powerful tool that helps you analyze your code, detect error situations and generate parameterized unit tests. In this posting I will give you quick and illustrated overview of Pex.
-
ASP.NET MVC: Comparing same view on ASP.NET and Razor view engine
I ported views of my ASP.NET MVC application from ASP.NET to Razor. Although Razor is very new it is very promising view engine because of shorter and cleaner syntax. In this posting I will show you same view on ASP.NET and Razor view engine. I like Razor one more but what do you think?
-
ASP.NET: How to avoid ArgumentNullException in StructureMap controller factory
I am using StructureMap as my IoC container. In my ASP.NET MVC web application I have controller factory based on StructureMap. I found interesting problem – when running my web application on development web server I get ArgumentNullException with every request to some controller action. In this posting I will describe why it is happening and how to avoid it.
-
CodePlex supports Windows Live Writer!
I am documenting local community portal that is hosted in CodePlex. Wikis have always been annoying for me when it comes to creating a good content. So, I was preparing for boring evening full of wiki mark-up and messing with good format, manual image uploads etc. But CodePlex surprised me today – it’s wiki supports Windows Live Writer!
-
ASP.NET MVC 3: Updating controller factories to RC
With ASP.NET MVC 3 RC there is change in IControllerFactory interface. This interface includes new method called GetControllerSessionBehavior(). This method returns value from SessionStateBehavior enum. ASP.NET MVC uses this method to find out how to handle session for given controller.
-
SharePoint: Setting master page for publishing sites
I am upgrading local community portal from SharePoint Server 2007 to SharePoint Server 2010. I also have to write deployment scripts so other guys can also use our codebase. One thing my deployment script has to do is to force correct master pages to sites. There is one little trick you should know when setting master pages for publishing webs. Here’s how I got things work.