Forum Moderators: open

Message Too Old, No Replies

What's new in .Net Framework 2.0

         

mrMister

11:22 pm on Aug 24, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I've just started nosing through the documentation for the .Net 2.0 Beta 2. With the final release just around the corner, I figured I'd better get stuck in.

Can anyone give me some pointers on some of the better new features/classes in the Framework.

I see they've added support for unsigned data types which I was amazed the'd left out up until now.

FTP classes look good too, which will make it easier to integrate with remote servers.

GZip support too, which I think is great if you're accessing remote servers.

Anyone got any more pointers?

TheNige

2:31 am on Aug 25, 2005 (gmt 0)

10+ Year Member



Lots of new stuff in ASP.Net...more controls etc.

My favorite new feature is the database cache invalidation. You can cache an item...and set it to invalidate if the underlying datasource changes. Really helpful on a website where you can cache data on your pages and then if the database table changes your cache will expire and the next request to the page will get new data and then cache it until it changes.

tomasz

10:45 am on Aug 25, 2005 (gmt 0)

10+ Year Member



Definitely, Master Pages, themes and skins.
New personalization out of box providers are cool also.
New VS is cool also intelisence + debug and continue just few to mention.

mrMister

12:10 pm on Aug 25, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You can spot a VS developer a mile off ;-)

Does anyone know if there as any real benefit to the Themes? It looks very gimmicky to me.

What benefits are there over a standard CSS based layout?

Re: Caching until database change.

What's the performance cost of this? I assume .Net has to do a lookup on the database on every page access which has to degrade performance somewhat.

Has anyone got a comparision on the time it takes to do this compared to the time it takes to look at the timestamp of a file on disk?

tomasz

2:42 pm on Aug 25, 2005 (gmt 0)

10+ Year Member



Themes are really cool,
You can create several different UIs for different users. Everyone contains own CSS and images folder and you can change it in run time just using one line of code.
You can run several different sites on one application just change your UI for different domain.

SQL dependency cache is a new thing in .Net and works nativly with SQL server 2005, but you can use it with 2000 also ( requires creating a trigger on watch table).
Performance will increase drastically with SQL dependency cache. Also you can improve your performance even more with asynchronous call backs another new thing in 2.0

Plus localization another new one, one site for different audiencies Engilsh, Polish etc, just one resource file for different users.

Easy_Coder

4:57 pm on Aug 25, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



What's new in .Net Framework 2.0

a boatload... [beta.asp.net...]

mrMister

7:01 pm on Aug 25, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Yes, obviously I've seen that. i was hoping for a bit of discussion on what people think the most useful features are.