Browse by Tags
All Tags »
MVC Framework (RSS)
Internet Explorer 8 is in beta and we're able to improve features that we need. Last week I sent a short message to the Microsoft DPE here in Germany with some comments what I like more in Firefox 3 than in Internet Explorer. Well, there are a couple
Read More...
Yesterday I posted a step by step guide by using the Preview 2 of the ASP.Net MVC Framework, the following is an updated version that targets the pre-release of the Preview 3 version of the ASP.Net MVC Framework. In this post you will learn how to use
Read More...
This post is different from my others, this post is a step by step guide to create a ASP.NET MVC Web application. You will learn to use most of the new features in the Preview 2 version of the ASP.NET Framework, you will also get a basic understanding
Read More...
Today Microsoft published the source code of ASP.NET MVC Framework at Codeplex: We’re delighted to give you an early preview of the first release of the ASP.NET MVC source code on to Codeplex. You will be able to find this project at http://www.codeplex.net/aspnet
Read More...
This post is about using Forms Authentication with the MVC Framework. I only want to let you know that this is a simple and fast “hack” only to show a simple solution to get it work. I decided to use the Membership feature for the validation of user name
Read More...
I have seen several posts about how to assign a ViewFactory to a Controller, most of the case the code looks like this: public class HomeController : Controller { public HomeController() { this.ViewFactory = new MyViewFactory(); } } The ViewFactory is
Read More...
On December 5th last year Microsoft Live Labs announced the Volta technology preview , a developer toolset for building multi-tier web applications using existing and familiar tools, techniques and patterns. You architect and built your application as...(
Read More...
I like the MVC (Model View Controller) framework which is available as a public CTP, now. You can download the latest bits with the ASP.NET 3.5 Extensions CTP Preview . You will find further links at Scott Guthrie's posts tagged with MVC . While playing
Read More...
I have seen several developers that want and have no problem by using server-side code blocks in a View when they are working with the MVC pattern. But I think the server-side code block should be used only in some advanced and special occasions and instead
Read More...
Take look at Nikhil's blog about how AJAX can be used with the ASP.Net MVC Framework: http://www.nikhilk.net/Ajax-MVC.aspx Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
Read More...
The last days I spent nearly all my time with the MVC Framework. As you may expect I absolutely like the way to control my HTML output more and get rid of the viewstate. When you read my blog you know that I'm using a lot of JavaScript and AJAX to make
Read More...
Note: This post is based on an early version of the ASP.Net MVC Framework. When using the ASP.Net MVC Framework it will do a URL routing to route an URL to a Controller, and the Controller should execute some logic and render the Views. We can for example
Read More...
Note: This is based on the pre-CTP version of the ASP.Net MVC Framework and it is in an early stage. I got a comment on one my previous post “ ASP.Net MVC Framework - Exception Handling ” that the Rescue style MonoRail is a nice solution to handle Exception
Read More...
Note: This post is based on an early preview version of the ASP.Net MVC Framework and much will happen until the next milestone. In this post I will show how we can handle errors that occur in a Controller’s Action method. The Controller base class has
Read More...
I really love how extensible the ASP.Net MVC Framework is, for example the normal pipeline looks like this: Request -> Route (IRouteHandler) –> ControlFactory (IControllerFactory) -> Controller (IController) -> ViewFactory (IViewFactory) ->
Read More...