<< How much was it and what kind of code does it write? >>
put out $150 for it. the project i'm doing is in asp.net. from my experience, most web apps beyond just static pages require some interaction with a database. however, its a real pain writing all the code to call all those stored procedures. typically what you do is construct a data access layer with sets of classes that contain methods that essentially "wrap" the stored procedures. that way you construct a data api for yourself that makes it much easier to ensure high performing code and to maintain the code. the biggest thing is that it promotes code reuse since all the data methods are in one place. the program gDal helps create this kind of code. code generation doesn't solve all the problems all the time, but it worked for me.
i think you'll see a lot of new development projects that are for web apps using .net for companies that use the microsoft product stack. asp.net is just SO much better than the alternative.