My first full-length article in MSDN Magazine is out with the October issue and it’s about Microsoft AJAX client templates. Check it out…
http://msdn.microsoft.com/en-us/magazine/cc972638.aspx
Great article! I'm looking forward to using this. When will the next version be out? Thanks.
Nice article , but why is the screendumps taken with firefox ? :)
@Mike: next version is going to be released this month.
@Andy: to make it very clear that everything we do in Microsoft Ajax is cross-browser. There are still people who believe that Microsoft Ajax only works on IE. This is not the case, we support Firefox, Safari, Opera and IE today.
@Martillo: thanks.
PS - in the code download, line 96 in 2_UpdatePanel.aspx does not compile.
To get it to compile I changed it from:
from p in AdventureWorksContext.Products [...]
to
using ( var AdventureWorksContext = new AdventureWorksDataContext() )
{[...]}