I'm coaching a clients agile adoption and we came to discuss the rebuilding of their web architecture. Currently all their (web) applications are built in VB...
... WebForms ... It isn't available in VS2008. It is currently a separately downloadable release candidate. ... From my understanding they co-exist. Just two...
... WebForms, essentially. ... IMO the attraction of WebForms is that you can 'do them' with very little knowledge of web programming. Interpreting user...
Hi, I often find the syntax of casting annoying. I'd like to read the statement left to right, but the cast forces me to dance back to the start of a ...
Casts are generally a sign there's potentially something wrong with the design of your application, or a component it's using. The only real reason for a cast...
Agree. You can definitely still do TDD in web forms and there are a variety of MVP patterns that can be applied to web forms to help facilitate this. You can...
One potential issue is that the compiler can, in some cases, completely remove casts if it statically determines they're unneeded. This tweak might defeat...
I haven't yet tried out Microsoft's MVC framework, but would point out that web forms can be quite flexible, and they are not really all that leaky or annoying...
I saw a presentation last night on Dynamic Data flavor of ASP.NET. If your application is mainly a CRUD type application then this approach is pretty darn...
I recently decided to use MVC for a new project of mine and I have a series of blog entries discussing it (though the series isn't over yet). Maybe my posts...
Classic ASP isn't really very close to MVC. They're (ASP, WebForms, MVC) three different things. A fundamental difference with MVC compared to the other two...
... Rendering content as a result of a POST is generally considered to be bad form (no pun intended), since it breaks the navigational structure of the web...
What is the best book to learn ASP .NET? Its safe to assume that I still remember C#/.NET - but oddly enough I've never written a web app. Coverage for: -...
They are both very good, however, I don’t think either of them cover MVP or TDD and they were written well before MVC came on the horizon Rich From:...
Ajax and javascript libraries have changed everything. Web forms versus MVC is not as important anymore, and we explicitly control things like get versus post...
... +1 and you really will want both, as the first assumes the second. Be aware that Onion's books aren't reference manuals; rather they cover the conceptual...
Really, we just need something to allow the client to talk to the business objects (and probably a presenter), without making a big production about it....
Mike - I'm sorry for the niave question - but how do the Ajax and Javascript change everything? If the team use Webforms how does Ajax/JavaScript come into...
...or is there something else going on? I ask because I'm trying to understand what Acceptance testings tools (Selenium, Fitnesse .NET, etc) will be options...
It CAN change everything, and should change everything, but developers are very religious, resistant to change, and above all love a big honking abstraction,...
I have these prerequisites/installing packages installed: .NET Framework 3.5 Service Pack 1Visual Studio 2008 Service Pack 1 I can't see any Visual Studio...
Hmmmph. Yeah, I think that straightens things out a lot. Seems to have been pilot error. Select project | Right-click Add | New Item Data | ADO.NET Entity Data...
You can get a little bit of the flavor of MVC from here: http://www.codinghorror.com/blog/archives/001223.html It's not really doing anything for me. I never...