02 September 2008
Vacations are over
And this means I'm back to blogging and I've noticed that there has been lots of new stuff while I was away. I've already noticed that there's a new preview of the ASP.NET MVC platform and that google has launched a new browser . I've also got several books on my reading queue. It... Read More...
Filed under:
25 August 2008
Book review: SOA in Practice
[Disclaimer: I've received a copy of this book for reviewing] Yesterday I've finished reading this interesting book from Nicolai Josuttis . I've been following Josuttis' work since my C++ times (which, btw, are a few years away now - enough for letting me sleep without thinking on memory... Read More...
Filed under:
15 August 2008
Breaking changes for ASP.NET on Service Pack 1
Great post on the forums that explains some of the breaking issues introduced by the service pack. Finally, you won't have to build your own form if you want to post the contents of a page to another page (btw, this won't affect you if you're using the new ASP.NET MVC platform). Read More...
Filed under:
10 August 2008
Book review: Making things happen
[Disclaimer: I've receive a copy of this book for reviewing] In these last days of vacations, I've managed to finish reading this really cool book on project management. Even though I'm not a project manager, this was one of those books I've heard lots of good things about and I can tell... Read More...
Filed under:
31 July 2008
It's official: I'm on vacations!
So, don't expect too many updates on the next month :) Read More...
Filed under:
31 July 2008
My favourite TV series
Ok, since today is my last day at work before vacations, I’ve though that it would be a great time to relax and since I was talking with a friend of mine about TV series, I thought that I should publish my top 6 TV series of all time, starting from 6 to 1. 6. Frasier One of the best comedy series of... Read More...
Filed under:
31 July 2008
The MVC framework – the TempData property
As we’ve seen in the last post of the series , the MVC platform introduced the notion of “request associated data” by creating the TempDataDictionary which can be accessed through the Controller’s TempData property. As we’ve discussed, the data you put in that dictionary will only “survive” a single... Read More...
Filed under: ,
31 July 2008
The MVC framework – the Controller lifecycle
In my last post,we’ve seen how the MvcRouteHandler creates an IController instance that is responsible for processing the current request . Today I’ll keep talking about the MVC platform and we’re going to step through the tipical controller lifecycle. When you build a new controller, you end up extending... Read More...
Filed under: ,
30 July 2008
Routes and namespaces
As I've said in one of my previous posts , you can have 2 controllers with the same name, but on different namespaces. The problem with this approach is that you'll only be able to get a route by specifying its name. So, if you don't want to use a name or if you can't (for instance, if... Read More...
Filed under: ,
30 July 2008
ASP.NET MVC: we need a declarative control model
Yes, I’ve been asking this for some time now…in fact, this is the only thing I miss from the traditional ASP.NET Web Forms model. Those clear aspx pages, with really few <%%> crap (oopss, I mean tags) springled through out my pages – the only place I did need them was inside templates. Notice that... Read More...
Filed under: ,
28 July 2008
More C# style trivia
In one of my last posts , I’ve said that I didn’t like the new recommendation of not using _ to prefix member fields. At the time, we all seem to agree that using hungarian was really a bad thing. So, I’ve searched the web and I’m putting here a link on the use of Hungarian notation by the man himself... Read More...
Filed under: ,
28 July 2008
Book review: Powershell pocket reference
[Disclaimer: I’ve received a copy of this book for review] I’m really happy to  have received a copy of this book. It’s really a simple, easy to read, concise book which contains all you need to get started with PowerShell. You can easy read the book in 1 or 2 days (that is, if you’re reading from... Read More...
Filed under:
24 July 2008
Still on getting info about the current Route
In one of my previous posts , I’ve showed how you could access the Values property of the RouteData class to get info about the current controller and action. What I forgot to mention at the time was that you should use the GetRequiredString method to get the url parameter values that must be filled... Read More...
Filed under: ,
24 July 2008
The MVC framework – the MvcHandler, the IControllerFactory and the ControllerBuilder types
As we’ve seen in the previous post , all “MVC routing requests” are handled by the MvcRouteHandler class which will simply return an instance of the MvcHandler type. The MvcHandler is an IHttpHandler which is responsible for creating other classes that end up handling the current request and processing... Read More...
Filed under: ,
24 July 2008
Getting information about the current Route
One of the things I needed when I started playing with ASP.NET MVC is getting info about the current Route. That’s easy when you’re on the controller, but what happens when you need that info on a module? In these scenarios, the easiest way of achieving this is getting a reference to the current HttpContext... Read More...
Filed under: ,
23 July 2008
Book review: Professional IIS 7 and ASP.NET Integrated Programming
[Disclaimer: I’ve received a copy of this book for review] I’ve just finished reading the Professional IIS 7 and ASP.NET integrated programming book by Dr. Shramram. If you’re trying to understand how to leverage the new IIS 7 managed features, then this book is just what you need. If you don’t know... Read More...
Filed under:
23 July 2008
The MVC framework – the MvcRouteHandler
As we’ve seen in the previous post , by default you’ll end up using the MvcRouteHandler class for setting up the handler that will return the HTTP response to the client. As you can see (by looking at the code), the GetHttpHandler will only return a new MvcHandler and pass it the current RequestContext... Read More...
Filed under: ,
17 July 2008
Loads cannot pass other loads...or can they?
Great post by Joe Duffy (does this guy ever sleep???) which points to a somewhat disturbing fact regarding some of the conventions taken as granted today...want to know what I'm talking about? Then go read it ASAP ! Read More...
Filed under:
16 July 2008
ASP.NET MVC Preview 4 is out
And you can get it from codeplex . Read More...
Filed under: ,
15 July 2008
Opera 9.5: finally with a good enough debugger for JS
In these last days I've finally upgraded to Opera 9.51 . I've always been a Opera user, though when I was actively developing for the web, I've generally ended up using Firefox and IE only. Now, the good news is that the latest version of Opera already has a JS debugger, which means that... Read More...
Filed under:
More Posts Next page »