vote up 5 vote down star

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?

flag

16 Answers

vote up 6 vote down check

For ASP.NET, you have a lot of improvements:

  • split view (code and design)
  • faster switching between code and design view
  • embedded master pages (one master page in another)
  • javascript debugging

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)

  • anonymous objects
  • automatic properties
  • object initializers
  • collection initializers (inline initialization for collections)
  • implicit typing (var keyword)
  • lambda expressions
  • LINQ
  • Extension methods

I might have forgotten a few, but I think this is about most of the new cool and useful stuff.

link|flag
vote up 0 vote down

also Dynamic Data have to be consider

link|flag
vote up 1 vote down

see Scott Hanselman's post here: http://www.hanselman.com/blog/HiddenGemsNotTheSameOld35SP1Post.aspx

link|flag
vote up 1 vote down

Here's a brief list of my favourites:

  • LINQ
  • Extension Methods
  • Lambda Methods

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.

link|flag
vote up 1 vote down

As others have said, there's a good list at www.asp.net/learn. I think the biggest ASP.NET specific changes are:

  • Official ASP.NET AJAX integration
  • ListView (much better than the GridView / DataView in that they let you write out clean HTML)
  • Big improvements to the IDE for CSS / HTML editing
  • Javascript debugging

Note that ASP.NET MVC is not released yet, and was definitely not included with ASP.NET 3.5.

link|flag
vote up -1 vote down

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.

link|flag
vote up 0 vote down

@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?

link|flag
vote up 1 vote down

@IainMH Nested Master Pages were always supported by ASP.NET, just not by the designer.

link|flag
vote up 1 vote down

I don't think the MVC Framework is quite ready for prime time yet

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

Master Pages

(of course, these are in there from version 2.0)

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'.

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

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?

link|flag
vote up 1 vote down

Its the MVC framework. Without 3.5, there is no MVC. Without MVC, ASP.NET is a PITA.

link|flag
vote up 5 vote down

Check out the MVC framework which is built ontop of 3.5. Big improvement over the traditional webforms model.

link|flag
vote up 3 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.