Welcome to Sol 3 Sign in | Join | Help

ASPInsiders

Aggregation of ASPInsiders and Microsoft ASP.NET team member blogs.

Browse by Tags

All Tags » MVC Framework   (RSS)
Internet Explorer 8 Expert Chat Zone Resume
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...
ASP.Net MVC Framework pre- Preview 3 - A Step by Step guide to create a simple web app.
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...
ASP.Net MVC Framework 2 - A step by step guide to create a simple Web Application
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...
ASP.NET MVC Source Code at Codeplex
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...
ASP.Net MVC Framework - Using Forms Authentication
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...
ASP.Net MVC Framework - Assign a ViewFactory to a Controller
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...
Volta - Microsoft Live Labs
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...
MVC Web Application and JSON
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...
MVC - Expression Language and custom tags
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...
ASP.NET MVC Framework - Ajax
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...
MVC Framework and Mobile Device
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...
ASP.Net MVC Framework - Security
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...
ASP.Net MVC Framework - Handling Exception by using an Attribute
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...
ASP.Net MVC Framework - Exception Handling
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...
ASP.Net MVC Framework - Creating a IRouteHandler which will support Interceptors
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...
More Posts Next page »