I've kept up to date with new features in the C# language as it's moved from version 1 through version 3. I haven't done such a good job keeping up to date with ASP.NET. I feel like some of the post version 1 features are not so good (e.g. the AJAX framework) or are just not that useful to me (e.g. the membership framework). Can anyone recommend any new killer ASP.NET features that might have gone unnoticed?
|
|
|
|
|
|
|
For ASP.NET, you have a lot of improvements:
Anyway most of the useful stuff are really in the meat of the language, and for .NET 3.5 the new language features for C# 3.0 will be (and yes, I find ALL of them useful)
I might have forgotten a few, but I think this is about most of the new cool and useful stuff. |
|||
|
|
|
|
also Dynamic Data have to be consider |
||
|
|
|
|
see Scott Hanselman's post here: http://www.hanselman.com/blog/HiddenGemsNotTheSameOld35SP1Post.aspx |
||
|
|
|
|
Here's a brief list of my favourites:
And I don't actually use ASP.NET, but ASP.NET AJAX is now included in 3.5 too and ASP.NET MVC is included in 3.5 SP1. |
||
|
|
|
|
As others have said, there's a good list at www.asp.net/learn. I think the biggest ASP.NET specific changes are:
Note that ASP.NET MVC is not released yet, and was definitely not included with ASP.NET 3.5. |
||
|
|
|
|
WPF. It's not quite a "killer feature" yet, but I welcome it as a really nice addition. Other than that, all the really cool and used Framework features already came with 3.0: LINQ, WCF, WF. |
||
|
|
|
|
@Lance - oh I didn't know that. Good catch. Have you used them? To how many levels? 2? 3? Do they cause more problems than they solve? |
||
|
|
|
|
@IainMH Nested Master Pages were always supported by ASP.NET, just not by the designer. |
||
|
|
|
|
Just an FYI, this site is built in MVC. I also have 2 apps in production on mvc, I would argue that its definitely ready for prime time. |
||
|
|
|
|
The split design/code view is pretty cool. It's not perfect yet, but it's pretty cool. Also editing in the design view now edits your css there and then. |
||
|
|
|
|
Nested master pages are new in 3.5. I haven't used them yet, but I can only imagine they could turn into a hidious nightmare if not used very carefully. You only have to look at the order in which the events are fired in a page that uses a master page to think 'urgh'. |
||
|
|
|
|
ListView and its friend DataPager are probably worth looking at, but they're hardly "Killer" features. Things outside of ASP.NET specifically (LINQ, for example) are probably more likely to be get the "Killer" commendation. |
||
|
|
|
|
I don't think the MVC Framework is quite ready for prime time yet, though I definitely plan to use it sometime next year. I love the clean URLs, clean XHTML (web forms can really spew out some nasty HTML) and the ability to create controller actions with no associated view. I've been using Master Pages since they were released and they've been a big help. I do really dislike the way the master pages add the nasty prefixes to the control IDs. It makes for some ugly CSS. I think the MVC Framework may eliminate this problem though. Any other killer features? |
||
|
|
|
|
Its the MVC framework. Without 3.5, there is no MVC. Without MVC, ASP.NET is a PITA. |
||
|
|
|
|
Check out the MVC framework which is built ontop of 3.5. Big improvement over the traditional webforms model. |
||
|
|
|
|
I'm still learning ASP.net so I can't tell you exactly, but if you look through http://www.asp.net/learn/ you'll probably find a few new gems, there's even a 3.5 section. |
||
|
|
