views:

1056

answers:

1

I'm doing pretty well getting up to speed with ASP.NET MVC with the ASP.NET website walkthroughts and tutorials.

Now I'm fully aware that this documentation is not complete and just Beta, but theres seems to be some important missing documentation.

Where can I find the best information about the following topics (that seem to be lacking in the primary documentation):

  • PartialViews
  • Advanced AJAX - Ajax.ActionLink and IsAjaxRequest
  • Detailed description of each attribute that I can decorate methods in my controller with

I've found some blog posts but several of them are pretty ancient.

+2  A: 

Dig into the actual source code at www.codeplex.com/aspnet. I'm using it a lot as a primary source these days to supplement the various blogs/tutorials. Source code is the only documentation that is never out of date. That said, MSDN has reference documentation for the released version now available.

tvanfosson