views:

63

answers:

2

I use T4MVC inside my asp mvc projects, mostly because it's brilliant. Is there an equivalent for asp webforms?

+1  A: 

It turns out David Ebbo (he also did the T4MVC stuff) has given asp webforms a little love as well: http://blogs.msdn.com/davidebb/archive/2009/07/12/asppathguru-a-little-t4-love-for-asp-net-webforms.aspx

ilivewithian
It's a much smaller scope thing than T4MVC, but I generally the literal string issue is not as big in the WebForms world.
David Ebbo
We still have surprising large amount of literal paths in a project I'm working on. It isn't quite the same scale of problem, but I prefer to keep things as clean as I can.
ilivewithian
+1  A: 

PageMethods provide some strongly typed capabilities for WebForms

artvolk