Jeffrey Palermo (.com)

Sponsors

The Lounge

News

Advertisement

Images in this post missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at imagehelp@codebetter.com
altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf

asp.net mvc framework 

Note:  Much more MVC information coming.  Subscribe to my feed: http://feeds.feedburner.com/jeffreypalermo Subscribe to email feed.

Scott Guthrie proposed a topic at the Alt.Net Conference today, and the topic was an overview of the MVC Framework his team is working on.  His topic is actually the first timeslot of the conference at 9:30am tomorrow morning.  Just about everyone showed interest, so I wouldn't be surprised to see most of the folks just listening.

Scott and I had supper after the opening, and I received a personal demo of the prototype.  First, here are some of the goals:

  • Natively support TDD model for controllers.
  • Provide ASPX (without viewstate or postbacks) as a view engine
  • Provide a hook for other view engines from MonoRail, etc.
  • Support IoC containers for controller creation and DI on the controllers
  • Provide complete control over URLs and navigation
  • Be pluggable throughout
  • Separation of concerns
  • Integrate nicely within ASP.NET
  • Support static as well as dynamic languages

I'm sure I missed some of the goals, and more people will blog their takeaways since this all is public information.

The first question might be: Is webforms going away?  Do I have to rewrite my web applications?  Some people might wish, but no.  Both models will be supported and even be supported within the same web application.  I, for one, after seeing this, think it is very good, and my company will be recommending it to our clients.

We might get a public CTP by the end of the year, and it will be released in a similar fashion as ASP.NET AJAX was, as an add-on after the Visual Studio 2008 release some time next year.

URLs

The default URL scheme will look something like this:

/<RouteName>/<Action>/<Param1>/<Param2>

where RouteName is configured to map to SomeController.  Multiple routes can map to the same controller for the purpose of providing more URLs (think SEO).

The developer can completely override the URL processing also by providing an implementation of an interface. 

Controllers

Controllers will inherit from a base class by default, but it doesn't hinder unit testing, and it's not even required.  I'll probably use the option of implementing the IController interface instead and creating a controller factory to support controller creation using my IoC container of choice (currently StructureMap).  In this manner, I implement an interface with one method that accepts IHttpContext (yep, we have an interface now), and RouteData, a simple DTO that includes the action and parameters for the web request (parsed from the URL scheme you are using).

Views

Like I said before, NVelocity, Brail, etc can be bolted on as view engines, and ASPX is provided as a view engine (the only thing that has been changed is that the code-behind will inherit from ViewPage as opposed to the current Page).  Controllers can either using IViewEngine (I think that's the name) to request a view by name (key) or using a helper method on the optional controller base class RenderView(string, viewData).  The default model uses a DTO for the objects passed to the view, so it is similar to MonoRail's property bag except it's a strongly-typed DTO (using generics for that), so when you rename stuff with Resharper, you don't have to worry about any string literals lying around.

My impressions

I first saw the early prototype in March of this year, and I was encouraged.  I was able to give some early feedback, which has already been encorporated into the product.  I'm not one to promote a Microsoft offering just because it's there (I have never recommended the use of MSTest over NUnit, for instance), but I will say this: As soon as I can get my hands on a build, I will be building something with it.  I am very encouraged by this, and I think they are going in the right direction.  While they have chosen a model to use with demos, they have broken down the walls.  Interfaces abound, and none of it is sealed.  I will start by swapping out the controller factory so I can get my IoC container in the mix, but it's easy to do.  For testing, there is no coupling of the controller.  The views are decoupled.  The httpcontext is decoupled with the new IHttpContext interface.  The actions are simple public methods with an attribute attached to them ([ControllerAction], I think).

Isn't it just like MonoRail?

Someone using MonoRail for more serious project than me can comment more intelligently, but here goes.  MonoRail is MVC.  This is MVC, so yes, it's very similar but different.  This gives us a controller that executes before a view ever comes into play, and it simplifies ASPX as a view engine by getting rid of viewstate and server-side postbacks with the event lifecycle.  That's about it.  MonoRail is much more.  MonoRail has tight integration with Windsor, ActiveRecord and several view engines.  MonoRail is more than just the MVC part.  I wouldn't be surprised if MonoRail were refactored to take advantage of the ASP.NET MVC HttpHandler just as a means to reduce the codebase a bit.  I think it would be a very easy move, and it would probably encourage MonoRail adoption (even beyond its current popularity).

 

 


Posted Fri, Oct 5 2007 11:57 PM by Jeffrey Palermo
Filed under: ,

[Advertisement]

Comments

Coding in an Igloo wrote Alt.NET Day 1
on Sat, Oct 6 2007 3:36 AM

Alt.NET Day 1

CodeClimber wrote MVC framework for ASP.NET
on Sat, Oct 6 2007 5:41 AM

MVC framework for ASP.NET

FoxyBlog wrote MVC per ASP.NET
on Sat, Oct 6 2007 5:57 AM

MVC per ASP.NET

Dan wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 6:07 AM

Sounds great, in fact is what I'm doing nowadays.

A front controller ( equivalent to the asp.net MVC handler, where I map the URL to the controller ), the controllers and a view engine.

I'm using a view engine from MonoRail but decoupled of the Castle framework.

I suppose server controls can't be used with the MVC ASPX view engine, right ??

And I don't understand why to release CTPs an so on, to me seems dead simple...

more alt.net conference blog posts wrote more alt.net conference blog posts
on Sat, Oct 6 2007 6:58 AM

Pingback from  more alt.net conference blog posts

DotNetKicks.com wrote Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 6:59 AM

You've been kicked (a good thing) - Trackback from DotNetKicks.com

Simone wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 9:48 AM

The fact that controllers have to inherit from a base class (presumably from ASP.NET) make me think that this cannot be used as framework agnostic controller, but only related to ASP.NET (not winform or wpf).

Hope this thing doesn't come out as Linq/Entity Framework

Sam Smoot wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 11:11 AM

Jeremy, I don't understand a couple of your comments at the end there. You said "gives us a controller...before a view ever comes into play". Could you elaborate on what you meant? It's been a _long_ time since I looked at Monorail, but is that not how it works there?

One other minor point... it's... sad I guess, how little community participation in OSS there is in .NET land. I put out a ASP-ish templating library in *January*, mentioned it several times, and never a spark of interest in it from the .NET community. It's not that people aren't asking for almost exactly this, but they seem to have zero motivation to pick up the ball and run with it. Here's a google-cache of the post I'm talking about (I don't bother maintaining my blog these days ;) ):  64.233.167.104/search

This probably sounds like sour-grapes. Believe me, it's not. If someone else bothered to come out with a similar lib I wouldn't loose any sleep over it. I'm certainly not interested in maintaining it. It's just sad how little community participation there seems to be. If Hamilton doesn't serve it up wrapped with a big red bow on a fantastic website, or MS doesn't deliver it themselves, the community is willing to limp along as long as it takes for someone else to drop it into their lap. And even when that happens, the .NET community has to be actively sold on the idea. As if the .NET community is doing the OSS contributor a favor by using their code.

That went on longer than I intended. I guess it's just how I roll. :-D Anyways, I think that may be the first time I thought of it that way... disappointing.

Jan Van Ryswyck wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 11:51 AM

ASP.NET MVC Framework at ALT.NET Conf

Jan Van Ryswyck wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 11:51 AM

ASP.NET MVC Framework at ALT.NET Conf

Jeffrey Palermo wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 2:47 PM

@Simone,

You explicitly do NOT have to derive from a base class.  The minimum required is to implement the IController interface.

Jeffrey Palermo wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 2:48 PM

@Sam,

I am in the OSS community, and there is a lot of adoption.  If you compare to the world, then no, but I'm not worried about that.  I, too, have released an open source project that folks didn't pick up and run with, but that's no big deal either.  Other folks aren't obligated to use my software, just like no one is obligated to buy a product from any company.  

Vladan Strigo's website - Vladan.Strigo.NET wrote Scott Guthrie to announce ASP.NET MVC at ALT.NET!
on Sat, Oct 6 2007 3:00 PM
Sam Smoot wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 3:13 PM

@Jeffrey, no, believe me, I've said the same to others. That's not the point, but it's probably off topic anyways. Sorry.

J.D. Meridth wrote System.Web.MVC
on Sat, Oct 6 2007 4:19 PM

Wow! I just left a presentation by Scott Guthrie on the new ASP.NET MVC architecture and I&#39;m impressed

sober mind wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 4:20 PM

Silverlight, ExpressionBlend, .Net 3.0, as well as, the plethora of other inconsequential toys that have poured out of Redmond over the past two years, will soon end up on the dump site of history.

An "MVC Framework," as you call it, is the biggest news coming from the Scott Guthrie fiefdom, in the past two years.

Thomas Eyde wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 6:56 PM

I really hope this runs on ASP.NET 2.0.

Colin Ramsay wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 7:02 PM

I think this comment:

"MonoRail has tight integration with Windsor, ActiveRecord and several view engines."

Is maybe a little ambiguous. While Monorail CAN integrate will several view engines, AR and Windsor, out of the box there is absolutely no dependancy or real default integration.

I know this is probably what you meant but I didn't think it was 100% clear :>

ISerializable - Roy Osherove's Blog wrote Microsoft gets Design For Testability with new MVC framework for ASP.NET- Finally.
on Sat, Oct 6 2007 8:53 PM

The big news out of the ALT.NET Conference so far are from Scott Guthrie , who did a full hour on introducing

A Microsoft ASP.NET MVC framework is on the way! « JoshBlog wrote A Microsoft ASP.NET MVC framework is on the way! &laquo; JoshBlog
on Sat, Oct 6 2007 9:36 PM

Pingback from  A Microsoft ASP.NET MVC framework is on the way! &laquo; JoshBlog

.net DEvHammer wrote Scott Guthrie announces ASP.NET MVC framework
on Sat, Oct 6 2007 9:48 PM

Jeffrey Palermo is at the alt.net conference going on in Austin, TX, and has some very interesting news

Steve wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sat, Oct 6 2007 9:55 PM

Finally.

Good stuff.  Glad to see the asp.net team take this positive course of action.

I can only hope I can use my IoC of choice, in addition, I hope the viewengine is done well.

Monorail has 'ViewComponent's - what will the ms mvp solution provide as far as 'controls' go?

Noticias externas wrote Scott Guthrie announces ASP.NET MVC framework
on Sat, Oct 6 2007 10:31 PM

Jeffrey Palermo is at the alt.net conference going on in Austin, TX, and has some very interesting news

ASP.Net MVC framework « If only I were . . . wrote ASP.Net MVC framework &laquo; If only I were . . .
on Sat, Oct 6 2007 10:39 PM

Pingback from  ASP.Net MVC framework &laquo; If only I were . . .

MSDN Blog Postings » Scott Guthrie announces ASP.NET MVC framework wrote MSDN Blog Postings &raquo; Scott Guthrie announces ASP.NET MVC framework
on Sat, Oct 6 2007 10:49 PM

Pingback from  MSDN Blog Postings  &raquo; Scott Guthrie announces ASP.NET MVC framework

» Scott Guthrie announces ASP.NET MVC frameworkOnline Dating & Entertainment Reviews » Blog Archive wrote &raquo; Scott Guthrie announces ASP.NET MVC frameworkOnline Dating &#038; Entertainment Reviews &raquo; Blog Archive
on Sun, Oct 7 2007 12:17 AM

Pingback from  &raquo; Scott Guthrie announces ASP.NET MVC frameworkOnline Dating &#038; Entertainment Reviews &raquo; Blog Archive

Jeffrey Palermo [MVP] wrote Big News - MVC framework for ASP.NET in the works - level 300
on Sun, Oct 7 2007 1:39 AM

This is big. I arranged a special meeting (with the help of Karl ) with Scott Guthrie today on the last

Microsoft announces its new MVC architecture for Web Apps « Nima Dilmaghani’s Technology Blog wrote Microsoft announces its new MVC architecture for Web Apps &laquo; Nima Dilmaghani&#8217;s Technology Blog
on Sun, Oct 7 2007 4:13 AM

Pingback from  Microsoft announces its new MVC architecture for Web Apps &laquo; Nima Dilmaghani&#8217;s Technology Blog

Ricardo Fiel wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sun, Oct 7 2007 6:01 AM

Will this make the Web Client Software Factory (http://www.codeplex.com/websf) obsolete?

Ken Egozi wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sun, Oct 7 2007 6:34 AM
Jeffrey Palermo wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sun, Oct 7 2007 10:23 AM

@Ricardo,

No it won't.  WCSF serves a different purpose than the MVC framework

Microsoft MVC Framework « .net and other musings wrote Microsoft MVC Framework &laquo; .net and other musings
on Sun, Oct 7 2007 10:30 AM

Pingback from  Microsoft MVC Framework &laquo; .net and other musings

Alex wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sun, Oct 7 2007 5:22 PM

Thanks for posting this information. I cannot tell you how excited I am hear about this. I enjoy using MR and try to emulate its simplicity in my own apps, but I am hesitant to use it in our production application since we have a dependency on third party tools. Since MS will be developing an MVC framework, my guess is that I will be able to use my third party tools with it, and that will be great news.

System.Reflection.Emit wrote MVC Now A Microsoft Thing
on Sun, Oct 7 2007 6:13 PM

MVC Now A Microsoft Thing

SixYo wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Sun, Oct 7 2007 8:44 PM

Good  stuff  ~~~

Joycode@Ab110.com wrote ASP.NET 将支持MVC和TDD
on Sun, Oct 7 2007 9:24 PM

根据 Jeffrey Palermo ,在刚举行的ALT.NET大会上, Scott Guthrie 对他的团队正在开发的MVC框架做了示范,预计在今年年底推出CTP版本。其中将包括: 内在支持控制器的TDD模型

阿布 wrote 根据Jeffrey Palermo,在刚举行的ALT.NET大会上,Scott Guthrie 对他的团队正在开发的MVC框架做了示范,预计在今年年底推出CTP版本。其中将包括:
on Sun, Oct 7 2007 9:56 PM

来源:思归博客

blog.joycode.com/.../109191.aspx 根据JeffreyPalermo,在刚举行的ALT...

yyww wrote Good News: ASP.NET 将支持MVC和TDD
on Sun, Oct 7 2007 10:29 PM

根据JeffreyPalermo,在刚举行的ALT.NET大会上,ScottGuthrie对他的团队正在开发的MVC框架做了示范,预计在今年年底推出CTP版本。其中将包括:

内在支持控制器的T...

wagnerblog.com » Now there is something interesting wrote wagnerblog.com &raquo; Now there is something interesting
on Sun, Oct 7 2007 10:51 PM

Pingback from  wagnerblog.com &raquo; Now there is something interesting

JrzyShr Dev Guy wrote ASP.NET MVC Framework Announced at Alt.NET
on Sun, Oct 7 2007 11:31 PM

I was down in Austin, Texas this weekend attending the Alt.NET conference . Great event and meeting of

Adrian H. wrote ASP.NET MVC Framework Announced
on Mon, Oct 8 2007 1:36 AM

ScottGuthrie在ALT.NET会议中展示了ASP.NETMVCFramework,它的CTP版本将于今年年底放出。

这个框架将支持以下特性: 为Controller提供...

MSDN Blog Postings » ASP.NET MVC Framework Announced at Alt.NET Conference wrote MSDN Blog Postings &raquo; ASP.NET MVC Framework Announced at Alt.NET Conference
on Mon, Oct 8 2007 1:54 AM

Pingback from  MSDN Blog Postings  &raquo; ASP.NET MVC Framework Announced at Alt.NET Conference

Christopher Steen wrote Link Listing - October 7, 2007
on Mon, Oct 8 2007 2:53 AM

Link Listing - October 7, 2007

mqaa wrote MVP Framework for ASP.NET
on Mon, Oct 8 2007 3:30 AM

MVP Framework for ASP.NET

Impersonation Failure wrote ASP.NET MVC Framework
on Mon, Oct 8 2007 6:24 AM

This would be very heartening news for anyone dreading the prospect of having to back to ASP.NET Webforms

Console.Write(this.Opinion) wrote Resumo da Semana - 08/10
on Mon, Oct 8 2007 8:38 AM

Resumo da Semana - 08/10

Adam Vandenberg wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Mon, Oct 8 2007 9:58 AM

Is ASP.NET MVC going to give us source code, a la EntLib, or just black-box compiled .DLLs, a la most of the .NET framework? At least it's not tied to Visual Studio versions, so that's a plus.

Without source, does this library tie us all into the standard Microsoft  long-update-cycle for bug fixes?

Chris Brandsma wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Mon, Oct 8 2007 11:56 AM

Dang it all, I was going to be there, but stayed behind to do an MSDN launch...

Anyway, did Mr. Guthrie say anything about a release date/timeframe?

Gary Sherman wrote ASP.NET MVC framework
on Mon, Oct 8 2007 12:41 PM

This was an unbelieveably exciting session at the ALT.NET conference. Scott Guthrie demo-ed an upcoming

sergiopereira wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Mon, Oct 8 2007 2:04 PM

@Adam,

The source code will be available just like the announced source code availability for the greater part of the .Net framework. I.e. you'll be able to browse and step into it but not recompile and distribute.

Hartmut's Box wrote ASP.NET MVC Framework
on Mon, Oct 8 2007 3:29 PM

Scott Guthrie announces ASP.NET MVC Framework at ALT.NET conference. There have been rumors about an MVC Framework for ASP.NET in March 2007, already. Jeffrey Palermo wrote about a special meeting with Scott Guthrie on the MVP Summit. Now Scott officially

Web Things Considered » Coming full-circle with MVC wrote Web Things Considered &raquo; Coming full-circle with MVC
on Mon, Oct 8 2007 3:40 PM

Pingback from  Web Things Considered &raquo; Coming full-circle with MVC

Yuriy wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Mon, Oct 8 2007 5:00 PM

Will server control relying on postbacks work in this environment?  I have some nice controls using syncpostback for their internal purposes.

Elegant Code » System.Web.MVC wrote Elegant Code &raquo; System.Web.MVC
on Mon, Oct 8 2007 5:50 PM

Pingback from  Elegant Code &raquo; System.Web.MVC

Paulo Morgado wrote Scott Guthrie Announces MVP Framework For ASP.NET
on Mon, Oct 8 2007 8:07 PM

I usually just share these news through my shared readings feed, but this one is too big the let it pass

microsoft » altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Palermo [MVP] wrote microsoft &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Palermo [MVP]
on Mon, Oct 8 2007 8:08 PM

Pingback from  microsoft &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Palermo [MVP]

microsoft » altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Palermo [MVP] wrote microsoft &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Palermo [MVP]
on Mon, Oct 8 2007 8:08 PM

Pingback from  microsoft &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Palermo [MVP]

microsoft » altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Palermo [MVP] wrote microsoft &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Palermo [MVP]
on Mon, Oct 8 2007 8:08 PM

Pingback from  microsoft &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf - Jeffrey Palermo [MVP]

Scott Hanselman's Computer Zen wrote ScottGu MVC Presentation and ScottHa Screencast from ALT.NET Conference
on Tue, Oct 9 2007 12:57 AM
ASPInsiders wrote ScottGu MVC Presentation and ScottHa Screencast from ALT.NET Conference
on Tue, Oct 9 2007 2:01 AM

I attended the ALT.NET Conference last weekend in Austin, TX. I personally find the name "Alt" as in

Blake Caraway wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Tue, Oct 9 2007 5:53 AM

Jeff, certainly the new MVC framework is exciting and seems to have a ton of promise. Is it possible to do something similar using ASP.Net today? How do you typically write ASP.Net MVC-ish apps in the WebForm world right now that are capable of can handling the various complex UI scenarios that we commonly face today? Have any code samples or maybe a reference implementation to discuss?

Thanks!

/bc

altnetconf links and buzz - Jeffrey Palermo [MVP] wrote altnetconf links and buzz - Jeffrey Palermo [MVP]
on Tue, Oct 9 2007 7:34 AM

Pingback from  altnetconf links and buzz - Jeffrey Palermo [MVP]

Jeffrey Palermo wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Tue, Oct 9 2007 8:34 AM

@Blake,

I plan on posting a way to ease into this, so stay tuned!!

Silverlight Lightstreamer? VB10 and more « Tales from a Trading Desk wrote Silverlight Lightstreamer? VB10 and more &laquo; Tales from a Trading Desk
on Tue, Oct 9 2007 4:36 PM

Pingback from  Silverlight Lightstreamer?  VB10 and more &laquo; Tales from a Trading Desk

Sanjay Talon wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Tue, Oct 9 2007 6:43 PM

ScottGu and ScottHa  are impressive

Dialog Box wrote Dialog Box
on Tue, Oct 9 2007 8:35 PM

Pingback from  Dialog Box

Nermin's .Net wrote Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Wed, Oct 10 2007 11:12 AM

Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf

Angel "Java" Lopez wrote Model View Controller en ASP.NET, a la Microsoft
on Thu, Oct 11 2007 6:51 AM

En la Altnetconf , Scott Guthrie ha revelado la implementación de Microsoft de un MVC para ASP.NET. Leemos

Alguns bits de tecnologia :D | Blog do Urubatan wrote Alguns bits de tecnologia :D | Blog do Urubatan
on Thu, Oct 11 2007 12:07 PM

Pingback from  Alguns bits de tecnologia :D | Blog do Urubatan

Alguns bits de tecnologia :D | Blog do Urubatan wrote Alguns bits de tecnologia :D | Blog do Urubatan
on Thu, Oct 11 2007 12:07 PM

Pingback from  Alguns bits de tecnologia :D | Blog do Urubatan

Nermin's .Net wrote Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Thu, Oct 11 2007 1:56 PM

Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf

Microsoft to release MVC framework with Visual Studio 2008 - Peter Krantz wrote Microsoft to release MVC framework with Visual Studio 2008 - Peter Krantz
on Thu, Oct 11 2007 3:08 PM

Pingback from  Microsoft to release MVC framework with Visual Studio 2008 - Peter Krantz

hinder » altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt … wrote hinder &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt &#8230;
on Thu, Oct 11 2007 10:21 PM

Pingback from  hinder &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt &#8230;

Asp.net MVC framework « 41 technologies wrote Asp.net MVC framework &laquo; 41 technologies
on Fri, Oct 12 2007 2:50 AM

Pingback from  Asp.net MVC framework &laquo; 41 technologies

Hadi Hariri wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Fri, Oct 12 2007 4:01 AM

All these actions remind me of how we used to develop web applications around 6 years ago in the days of ISAPI. With Delphi we had this technology called WebBroker which was based on actions and parameter parsing. Loved it then, love it now.

Same Old Applications wrote ASP.NET MVC framework
on Fri, Oct 12 2007 4:17 AM

Scott Guthrie presentetation on ALT.NET conference about the new MVC model for ASP.NET gets lot attention

Nermin Dibek wrote Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Fri, Oct 12 2007 3:32 PM

I have had several moments in my career where I was near a point of just simply giving up on MS and joining

Charlie Calvert's Community Blog wrote Community Convergence XXXIII
on Sun, Oct 14 2007 8:55 PM

Welcome to the thirty-third edition of Community Convergence. This week we have a new video called Programming

Billy McCafferty wrote Re-assessing Best Practices
on Mon, Oct 15 2007 2:55 PM

As we progress as developers, we strive to seek out the &quot;best&quot; way to perform our craft. The

{ null != Steve } » Blog Archive » ALT.NET - MVP - Scott Guthrie wrote { null != Steve } &raquo; Blog Archive &raquo; ALT.NET - MVP - Scott Guthrie
on Mon, Oct 15 2007 8:16 PM

Pingback from  { null != Steve } &raquo; Blog Archive  &raquo; ALT.NET - MVP - Scott Guthrie

BrianLei wrote MVC崭新框架,近期关注
on Mon, Oct 15 2007 10:34 PM
ASP.NET MVC Framework Article Roundup « Jim 2.0’s Blog wrote ASP.NET MVC Framework Article Roundup &laquo; Jim 2.0&#8217;s Blog
on Sat, Oct 20 2007 10:44 PM

Pingback from  ASP.NET MVC Framework Article Roundup &laquo; Jim 2.0&#8217;s Blog

» altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt … wrote &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt &#8230;
on Sun, Oct 28 2007 7:54 PM

Pingback from  &raquo; altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt &#8230;

Scott Hanselman wrote ScottGu MVC Presentation and ScottHa Screencast from ALT.NET Conference
on Fri, Nov 2 2007 2:01 PM

I attended the ALT.NET Conference last weekend in Austin, TX. I personally find the name &quot;Alt&quot;

Codeville wrote re: altnetconf - Scott Guthrie announces ASP.NET MVC framework at Alt.Net Conf
on Tue, Nov 6 2007 10:30 AM

I'm really glad we're finally moving away from the clumsy WebForms model and getting some much-needed streamlining.

If you're getting into MVC, you might like to try out an open-source *client-side* MVC library for ASP.NET that makes it really easy in many circumstances to build highly dynamic UIs without AJAX or postbacks. There are demos linked from my blog

blog.codeville.net/.../jmvcnet-neat-client-side-mvc-for-aspnet

Jeffrey Palermo [MVP] wrote ASP.NET Podcast on the MVC Framework available
on Tue, Nov 20 2007 10:45 AM

If you are interested in the ASP.NET MVC Framework that Microsoft is working on, check out the podcast

dave^2=-1 wrote ASP.NET MVC framework
on Fri, Feb 1 2008 5:22 AM

Jeffrey Palermo has blogged his thoughts on the new ASP.NET MVC framework ScottGu is covering at the