.NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Last week we shipped Visual Studio 2008 and .NET 3.5.  This release is a big one for .NET, and delivers a ton of new capabilities and improvements for web, client, office and mobile development.

Over the next few months we'll be delivering a series of additional products that build on top of this VS 2008 and .NET 3.5 foundation, and make .NET development even better.  Below is a road-map of some of the upcoming initiatives and releases for .NET web development that my team is currently working on for the months ahead:

Releasing the Source Code for the .NET Framework Libraries

We announced last month that we'll provide the ability for developers to download and browse the source code of the .NET Framework libraries, as well as enable integrated source debugging of them using Visual Studio 2008.  You can learn more about this in my blog post here.

We are finishing up the final deployment of the source servers that host this now, and will be publishing instructions on how to enable the integrated debugging experience within Visual Studio 2008 shortly.  I'll blog detailed steps on how to turn this feature on once it is available.

ASP.NET 3.5 Extensions Release

VS 2008 and .NET 3.5 include a ton of new features for ASP.NET development.  We are planning to deliver even more ASP.NET functionality next year with a "ASP.NET 3.5 Extensions" release.  The first public preview of this will be available for download next week on the web.

Next week's ASP.NET 3.5 Extensions preview release will include:

  • ASP.NET MVC: This model view controller (MVC) framework for ASP.NET provides a structured model that enables a clear separation of concerns within web applications, and makes it easier to unit test your code and support a TDD workflow.  It also helps provide more control over the URLs you publish in your applications, and more control over the HTML that is emitted from them.  You can learn more about it from Part 1 of my ASP.NET MVC Tutorial series.  I'm hoping to find time this weekend to write and post Part 2 of the series.
  • ASP.NET AJAX Improvements: New ASP.NET AJAX features in the ASP.NET 3.5 Extensions release will include better browser history support (back/forward button integration, and server-side history management support via a new <asp:history> server control), improved AJAX content linking support with permalinks, and additional JavaScript library improvements.
  • ASP.NET Dynamic Data Support: The ASP.NET 3.5 Extensions release will deliver new features that enable faster creation of data driven web sites.  It provides a rich scaffolding framework, and enables rapid data driven site development using both ASP.NET WebForms and ASP.NET MVC.
  • ASP.NET Silverlight Support: With the ASP.NET 3.5 Extensions release we'll deliver support for easily integrating Silverlight within your ASP.NET applications.  Included will be new controls that make it easy to integrate Silverlight video/media and interactive content within your sites.
  • ADO.NET Data Services: In parallel with the ASP.NET Extensions release we will also be releasing the ADO.NET Entity Framework.  This provides a new modeling framework that enables developers to define a conceptual model of a database schema that closely aligns to a real world view of the information.  We will also be shipping a new set of data services (codename "Astoria") that make it easy to expose REST based API endpoints from within your ASP.NET applications.

Silverlight 2.0 Release

Two months ago we shipped Silverlight 1.0 for Mac and Windows, and announced our plans to deliver Silverlight on Linux.  Silverlight 1.0 is focused on enabling rich media scenarios in a browser, and supports a JavaScript/AJAX programming model.

Next year we will be releasing a major update of Silverlight that focuses on enabling rich Internet applications.  This release will include a cross-platform, cross-browser version of the .NET Framework, and will enable a rich .NET development platform in the browser.  Earlier this year we shipped an early Alpha containing some of the basic functionality of the release.  Our next public preview will add considerably to this feature set.  Some of the new .NET specific features in the next public Silverlight preview will include:

  • WPF UI Framework: The current Silverlight Alpha release only includes basic controls support and a managed API for UI drawing.  The next public Silverlight preview will add support for the higher level features of the WPF UI framework.  These include: the extensible control framework model, layout manager support, two-way data-binding support, and control template and skinning support.  The WPF UI Framework features in Silverlight will be a compatible subset of the WPF UI Framework features in last week's .NET Framework 3.5 release.

  • Rich Controls: Silverlight will deliver a rich set of controls that make building Rich Internet Applications much easier.  The next Silverlight preview release will add support for core form controls (textbox, checkbox, radiobutton, etc), built-in layout management controls (StackPanel, Grid, etc), common functionality controls (TabControl, Slider, ScrollViewer, ProgressBar, etc) and data manipulation controls (DataGrid, etc).

  • Rich Networking Support: Silverlight will deliver rich networking support.  The next Silverlight preview release will add support for REST, POX, RSS, and WS* communication.  It will also add support for cross domain network access (so that Silverlight clients can access resources and data from any trusted source on the web).

  • Rich Base Class Library Support: Silverlight will include a rich .NET base class library of functionality (collections, IO, generics, threading, globalization, XML, local storage, etc).  The next Silverlight preview release will also add built-in support for LINQ to XML and richer HTML DOM API integration.

Previously we've been referring to this .NET-enabled Silverlight release as "Silverlight V1.1".  After stepping back and looking at all the new features in it (the above list is only a subset - there are many more we aren't sharing yet), we've realized that calling it a point release doesn't really reflect the true nature of it.  Consequently we have decided to change the name and refer to it as "Silverlight V2.0" going forward.

We will be releasing a Beta of Silverlight 2.0 in Q1 of 2008.  This Beta will support a Go-Live license that enables developers to begin building and deploying Silverlight 2.0 applications.

We will also be releasing a free Visual Studio 2008 tools update that provides great Silverlight 2.0 tools support within Visual Studio 2008, and enables developers to easily build Silverlight applications using any .NET language.  We will be supporting Silverlight development with both the Visual Studio 2008 Standard/Professional products, as well as with the free Visual Studio 2008 Express editions.

I'm going to be starting a new blog tutorial series in a few weeks that discusses how to build Silverlight 2.0 applications, and show off the new features in more depth.  Stay tuned for more details soon.

IIS 7.0

Early next year we'll ship the final release of IIS 7.0 as part of the Windows Server 2008 release.  As I've blogged about in the past, IIS 7.0 is a major update of our web-server stack, and introduces a significantly new and improved extensibility, configuration and administration architecture. 

One of the really cool things about IIS 7.0 is that it is all nicely integrated with the .NET Framework, and enables you to use any .NET language to extend and customize the server.  You can now easily do things in VB and C# that previously required writing a pretty gnarly C++ ISAPI.  The deployment, management and administration of web applications on the server is also now nicely unified across IIS and ASP.NET.

We will also shortly begin sharing details of a new web application deployment framework for IIS that enables you to easily automate the deployment of web applications on either a single server or across a web farm of machines.  It will make it easy to version your web applications (including allowing you to quickly roll back to previous versions), as well as automatically provision them across multiple servers.  It also enables the full automation of deployment tasks (including via both command-line and PowerShell scripting APIs).  The combination of IIS7 with this web deployment framework will enable you to deploy and scale your ASP.NET server applications better than ever before.

Summary

Last week's VS 2008 and .NET 3.5 release was a huge step forward for .NET development.  The release not only delivered a ton of great new language, runtime and tool features, but even more importantly provided a really solid foundation that we'll be building upon in the months and years ahead.  Stay tuned to my blog for more details about each of the above releases.

Hope this helps,

Scott

Published Thursday, November 29, 2007 9:22 AM by ScottGu

Comments

# Silverlight Roadmap

Thursday, November 29, 2007 12:24 PM by DotNetKicks.com

You've been kicked (a good thing) - Trackback from DotNetKicks.com

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 12:27 PM by Indy

Hi Scott!

Kudos to you and your great team - you guys are just great!! Looking forward to seeing the next article on MVC.

Indy

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 12:28 PM by Josh Stodola

Keep up the great work guys! What you are doing is border-line magical.  

# Silverlight V2.0

Thursday, November 29, 2007 12:30 PM by Mike Taulty's Blog

And only yesterday, MikeO were still calling it V1.1 at our Silverlight event in Birmingham. Get the...

# Bejelentések napja - ASP.NET 3.5, Silverlight 2.0

Thursday, November 29, 2007 12:37 PM by Mount Gellért - az architekt, és aki mögötte van

weblogs.asp.net/.../net-web-product-roadmap-asp-net-silverlight-iis7.aspx

# Scott Gu publish the .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 12:41 PM by 13BIT.com.ar

Scott Gu publish the .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 12:44 PM by Arpit Jacob

awesome can't wait for your next posts :)

# Silverlight 2.0!!!!

Thursday, November 29, 2007 12:46 PM by Miguel Saez

La esperada version de Silverlight 1.1, ser&#225; renombrada como Silverlight 2.0 . Por qu&#233;? La

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 12:49 PM by Jesus Garza

You mentioned that ASP.NET 3.5 Extensions “first public preview of this will be available for download next week on the web”. And that “will be releasing a Beta of Silverlight 2.0 in Q1 of 2008”.

Is Silverlight 2.0 included on the extensions? If not, is there going to be an alfa before the 2008 beta?

Best regards,

Jesús Garza

# ScottGu has outlined our .NET Web Product Roadmap

Thursday, November 29, 2007 12:50 PM by Non-official Random .NET Ramblings

You should read it... it's all good! .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) Technorati

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 12:50 PM by Edward J. Stembler

This is great news!

I'm eagerly awaiting the new MVC framework.  Having played with the betas for Astoria I'm also looking forward to it going live.

I really wish the Silverlight team would've ported the FlowDocument though.  I've been waiting for that to use in a project...

# Silverlight : I guess it is all in the name, ( I mean in the version )

I guess it is all in the name, ( I mean in the version ), but today we announced a few changes around

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 12:55 PM by kevindente

Scott,

I'm already running into limitations with VS2008's Javascript support (debugging limitations, Intellisense issues with major Javascript frameworks). Any plans for a service pack or hotfixes to address these issues?

# &raquo; Big changes in the Silverlight roadmap | The Universal Desktop | ZDNet.com

Pingback from  &raquo; Big changes in the Silverlight roadmap | The Universal Desktop | ZDNet.com

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 12:57 PM by David.Kelley

I think its a good plan to call it(Silverlight) 2.0 anyway as there are just so many differences and your using a real programming language (i.e. C#).  Yesterday they were still calling 1.1 on campus too.

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 12:57 PM by Ben Hayat

It's very appropriate to call it SL 2.0, leaves room for 1.0 to grow a bit more.

Excellent news Scott; SL team is the best (after ASP team) ;-)

Thank you Scott for giving us the Road Map. Have you thought about running for Presidency? We can use someone like you!

# Silverlight 2.0 to Go-Live in Q1 2008 (beta)

Thursday, November 29, 2007 1:00 PM by Rob Zelt - Lighting Up The Web

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:01 PM by Fisher Ning

Wow, Silverlight 2.0, Let's forget 1.1. 2.0 looks awesome. I will develop new SL content for my site by 2.0 after the first preview beta is released.

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:04 PM by elixir

great news!

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:05 PM by Ian Hughes

In the Silverlight 2.0 Release when we create custom Silverlight Controls will we be able to fetch embedded resources like images back out of the assembly? I noticed right now you have the option to wrap them in but not get them back out.

# &raquo; Microsoft rechristens Silverlight 1.1 as &#8216;Silverlight 2.0&#8242; | All about Microsoft | ZDNet.com

Pingback from  &raquo; Microsoft rechristens Silverlight 1.1 as &#8216;Silverlight 2.0&#8242; | All about Microsoft | ZDNet.com

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:06 PM by Scott

I like alot of the new features.  One thing particular nested Master Page - Design Time.

I would have really liked seeing Design Time Nested Repeater Rendering.  Just to allow us to get an idea about what our nested repeaters look like without having to go to a runtime view.

Any chance something like this can be included in a service pack? :)

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:07 PM by Joe

Great news on the Silverlight features.  But you mention that it will be a subset of WPF 3.5 and then say it includes a DataGrid?

Does that mean there will be a WPF 3.6 update or some new downloadable components?

Any word on taking Silverlight out of the Browser - an AIR competitor?

Here's hoping that the beta will be before MIX 08.

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:08 PM by Ben Hayat

To Jesus:

>>Is Silverlight 2.0 included on the extensions? If not, is there going to be an alfa before the 2008 beta?<<

I think the SL Extension in ASP 3.5 is to support integration with SL 1.0. Since SL 2.0 is due later on, but that's my guess!

..Ben

# Silverlight 2.0 e ASP.NET 3.5 Extensions ..

Thursday, November 29, 2007 1:09 PM by Il blog del team MSDN Italia

Come annunciato pubblicamente dal blog di ScottGu , ecco le novit&#224; Silverlight 2.0. La prossima

# MSDN Blog Postings &raquo; Bejelent??sek napja - ASP.NET 3.5, Silverlight 2.0

Pingback from  MSDN Blog Postings  &raquo; Bejelent??sek napja - ASP.NET 3.5, Silverlight 2.0

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:12 PM by Jon Galloway

Very glad to hear about the Go Live license for Silverlight 2.0 in Q1.

Thanks so much for publishing a roadmap that's available to everyone to see - it's very much appreciated.

# .NET Web Roadmap for 3.5 (ASP.NET, Silverlight, IIS 7)

Thursday, November 29, 2007 1:14 PM by Erik Porter's Blog

Scott Guthrie posted some fantastic info on ASP.NET Extensions 3.5 to match up with Visual Studio 2008

# miga &raquo; .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:14 PM by miga » .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Pingback from  miga &raquo; .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

# Silverlight 2.0 ?

Thursday, November 29, 2007 1:15 PM by Pietro Brambati Blog

Sì, avete letto bene. Abbiamo da poco annunciato pubblicamente che Silverlight 1.1 cambierà nome, tramite

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:18 PM by Kiran

Is Microsoft going to support Script#? I have been using this for a while and really love it.

# Silverlight 1.1 is dead

Thursday, November 29, 2007 1:18 PM by David Kelley, Sr. Software Architect

Silverlight 1.1 is now 2.0 as of this morning: hackingsilverlight.blogspot.com/.../silverlight

# [Silverlight] Bye Bye Silverlight 1.1, Welcome Silverlight 2.0 (Go-Live) !

Thursday, November 29, 2007 1:25 PM by Thomas Lebrun

Scott Guthrie nous avait annoncé il n'y a pas longtemps qu'il allait nous donner plus d'infos sur ce

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:29 PM by Chad Campbell

Scott,

Thank you for the update.  You mention in this post how you will be "starting a new blog tutorial series in a few weeks that discusses how to build Silverlight 2.0 applications"  My question is, how will this be useful to those of us that cannot get our hands on a Silverlight build that has these features?  From my understanding it sounds like the next public release will not occur until the MIX '08 conference.  Is there going to be another alpha between now and then?

# .NET Web Products Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:29 PM by DeveloperZen.com

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:39 PM by Wallstreet

Give me silverlight 2.0 or give me death!

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:40 PM by Mcbeev

Has there been any word on an update for Web Deployment Projects for VS 2008 ?

# .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:46 PM by Chris Koenig

Some very important stuff announced today on Scott Guthrie's blog around the collective futures of ASP.NET,

# Le futur de Silverlight 1.1 ... c'est Silverlight 2.0 !

Thursday, November 29, 2007 1:47 PM by Christophe Lauer, Blog Edition

Scott Guthrie - Senior VP Development à Microsoft Corp - vient d'annoncer sur son blog plusieurs informations

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:49 PM by Mohamed

Hi Scott,

You and your team are doing phenomenal work and should win an award for this.

I CANNOT wait till next week.

Again, Thank you for making our lives more enjoyable.

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:51 PM by Doctor Memory

>>(the above list is only a subset - there are many more we aren't sharing yet),

Curse you Guthrie and your tantalizing hints as to how great this next release will be! Can’t you see you already have the lot of us drooling in anticipation!

Hehehe, seriously though. I have looked around for any info on Silverlight mobile but I can’t find anything other than the demonstration back in May. How is this coming along and do the Silverlight Mobile devs have a web-log going?

# Microsoft reversioned Silverlight 1.1 as Silverlight 2.0 &raquo; D' Technology Weblog: Technology, Blogging, Tips, Tricks, Computer, Hardware, Software, Tutorials, Internet, Web, Gadgets, Fashion, LifeStyle, Entertainment, News and more.

Pingback from  Microsoft reversioned Silverlight 1.1 as Silverlight 2.0 &raquo; D' Technology Weblog: Technology, Blogging, Tips, Tricks, Computer, Hardware, Software, Tutorials, Internet, Web, Gadgets, Fashion, LifeStyle, Entertainment, News and more.

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 1:59 PM by Simon Söderman

Awesome post, and it seems to include every suggestion i´ve seen for silverlight. Databinding, cross domain networking, similiar set of controls as wpf, but how about sockets? Anyhow, the big question for me is, will there be another ctp before the beta release? I truly, madly, deeply hope so :)

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 2:05 PM by Mike

There's is so much separate stuff that we can call .NET now: the CLR, DLR, Silverlight, ASP.NET MVC, Visual Studio, compilers, AJAX/ASP Futures.

This creates a situation where every blog post about the ASP.NET MVC framework results in numerous comments of people asking if it will be part of VS 2008. In other words: confusion, what product belongs where, and when is it releases? The whole 3.0 version didn't help either...

For instance, today I was struggling with understanding drag and drop in ASP.NET Ajax. I am constantly being put on the wrong track by blog posts from 2006 about CTP's from before 1.0, while apparently it was not released in 1.0 and is now in the futures (where I still can't find documentation on it).

Do you have this on the radar? If not, it might be worth looking into.

Thanks!

PS. I'd like a layout manager for ASP.NET Ajax too, is that even considered?

# Bejelentések napja - ASP.NET 3.5, Silverlight 2.0

Thursday, November 29, 2007 2:05 PM by MountGellért (Smulovics Péter)

weblogs.asp.net/.../net-web-product-roadmap-asp-net-silverlight-iis7.aspx

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 2:05 PM by Steven Berkovitz

Any idea when we can expect an updated  version of the Web Deployment Project?

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 2:11 PM by Todd Gray

Do you have a roadmap for Silverlight that covers the various platforms and when they will get the new version(s), or will 2.0 be released simultaneously on all supported platforms?

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 2:13 PM by bill Xie

Hi, Scott,

Good job! I am also wondering the progress of dynamic language support like IronPython.

# .NET Web Products Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 2:17 PM by ekampf 2.0

Scott Guthrie just published a comprehensive post detailing Microsoft&#39;s .NET web products roadmap

# Silverlight 2.0 Beta

Thursday, November 29, 2007 2:18 PM by Joshua Johnson

Some exciting news has been announced a little while ago by Scott Guthrie , here . Silverlight has a

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 2:24 PM by Gary

I always thought labeling it v1.1 was an understatement. :)

I do have a question about IIS 7.0. Windows Vista has already shipped with this. What are the differences between this release and the one in Windows Server 2008?

Also, do you guys get any information from Novell on the development status of Moonlight? Mono's page on the subject doesn't appear to get updated often. Will the release dates be far apart? Will this release contain all of the functionality  of the Windows and Mac versions?

Thanks.

# Microsoft MVC next week? &laquo; .net and other musings

Thursday, November 29, 2007 2:24 PM by Microsoft MVC next week? « .net and other musings

Pingback from  Microsoft MVC next week? &laquo; .net and other musings

# kontraktor &raquo; .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Pingback from  kontraktor &raquo; .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

# Silverlight 2.0 - Building on Scott's Blog

Thursday, November 29, 2007 2:24 PM by Jesse Liberty - Silverlight Geek

Today Scott Guthrie (affectionately known as ScottGu) made a series of announcements about the evolution

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 2:25 PM by Bertrand Le Roy

Small correction: history is not managed through a history control but through the ScriptManager and new properties and events defined on it.

# ASP.NET MVC CTP will be released next week &laquo; codeville

Thursday, November 29, 2007 2:26 PM by ASP.NET MVC CTP will be released next week « codeville

Pingback from  ASP.NET MVC CTP will be released next week &laquo; codeville

# Silverlight 2.0 and ASP.NET 3.5 Extensions - MVC Framework : Scaffolding Framework : ADO.NET Entity Framework : Astoria

Thursday, November 29, 2007 2:30 PM by David Hayden - Florida .NET Developer - C# and SQL Server

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 2:31 PM by Colin Bowern

Is it fair to say that Microsoft is not playing the mobile web game?  There seems to be little investment in the area of the mobile web.  With the number of devices exceeding PCs it seems like a big miss.

# Silverlight 2.0 Go-Live license Q1 2008 &laquo; Tales from a Trading Desk

Pingback from  Silverlight 2.0 Go-Live license Q1 2008 &laquo; Tales from a Trading Desk

# .NET Web Products Roadmap

Thursday, November 29, 2007 2:38 PM by Guy Barrette

Scott Guthrie just published a blog entry where he is laying down a roadmap for the .NET Web products

# Web Product Roadmap

Thursday, November 29, 2007 2:38 PM by Marc: My Words

Web Product Roadmap

# ASP.NET 3.5 Extensions Public Preview Announced

Thursday, November 29, 2007 2:40 PM by Ian Suttle's Blog

ASP.NET 3.5 Extensions Public Preview Announced

# Microsoft Silverlight 2.0 beta to come early next year

Thursday, November 29, 2007 2:45 PM by Microsoft Silverlight 2.0 beta to come early next year

Pingback from  Microsoft Silverlight 2.0 beta to come early next year

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 2:54 PM by Radu

Scott, I really admire your work but I have to complain about Microsofts strategy with Silverlight 1.1. I am very disapointed that I have to continue waiting for a Beta until Q1 of 2008.

I started building a Silverlight 1.1 Application in August this year expecting the Beta to come soon. In fact I read in your blog that the Beta will be released in 2007. If I had known that it will take until 2008 I would have planed my work differently.

Radu

# Silverlight 2.0 e novidades no ASP.NET 3.5 anunciados

Thursday, November 29, 2007 2:55 PM by Mauro Sant'Anna

A Microsoft anunciou que o que era chamado de Silverlight 1.1 Beta será lançado como Silverlight 2.0....

# Silverlight 2.0, MVC Framework И все все все

Thursday, November 29, 2007 2:56 PM by Roman Nikitin

Scott Guthrie сегодня анонсировал: Silverlight 1.1 переименовывается

# ScottGu on ASP.NET 3.5, Silverlight 2.0, and IIS7

Thursday, November 29, 2007 2:58 PM by SteelePrice.Net

# Silverlight 2.0

Thursday, November 29, 2007 2:59 PM by VBandi

&#218;gy tűnik, a Microsoft v&#233;gre a verzi&#243;sz&#225;moz&#225;sban is megmutatja, hogy a CLR-el

# Blizej Natury &raquo; Blog Archive &raquo; .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Pingback from  Blizej Natury  &raquo; Blog Archive   &raquo; .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 3:03 PM by Oran

Hi Scott, the web product roadmap looks very cool!  But last I heard, focusing exclusively on the web product roadmap was your old job.  You have said "Although my blog is heavy on ASP.NET content, that is actually only one of the technologies I spend time on."  Despite this acknowledgement, I am becoming increasingly concerned about the allocation of resources within DevDiv based on what your blog focuses on, the feature set of 3.5, and this product roadmap.  You probably don't intend for it to come across this way, but it really seems like Silverlight is becoming the new WPF, just like WPF was the new WinForms.  Yes, we can tell the story that Microsoft loves and supports all its children forever, each one is unique and special in its own way, and you don't kill off all the previous children when the new one arrives, but it seems like the focus right now is on making Silverlight an 80% or 90% rich client solution, and once you flip the stand-alone out-of-browser bit, people will need to seriously think twice about using WPF for any new development.  And if that's the future, why should Microsoft invest any further in the WPF Classic feature set?

# Silverlight 2.0

Thursday, November 29, 2007 3:07 PM by Bruce's Blog

Silverlight 2.0

# Silverlight 1.1 gets a proper version number

Thursday, November 29, 2007 3:15 PM by Aali - a developer's view

As Scott writes, 1.1 does not really give credit to all the new features that goes into the next Silverlight...

# Silverlight 2.0 Is Coming

Thursday, November 29, 2007 3:18 PM by Steven Smith

ScottGu today announced what many of us have been wondering and hoping would happen with regard to the

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 3:19 PM by Dave

I would say half our files are in aspx and half are in classic ASP. Any thoughts on wheter the vbscript colorization/intellisense support that was in VS2005 will be put back in for VS2008? Does the community need to use the Visual Studio SDK and write something similar to what was done for IRON Python? I understand you want to keep moving forward, intellisense was probably difficult for vbscript, but ripping out colorization too? - ugh! Having two editors open for files in the same project isn't fun. Please provide your thoughts on this problem. Classic ASP syntax coloring is done in half a dozen controls on the web available from 3rd party vendors - if they can do it, I don't see why VS had to stop. Please provide your thoughts on this.

# Info World &raquo; Blog Archive &raquo; Silverlight 2.0 to launch early next year

Pingback from  Info World  &raquo; Blog Archive   &raquo; Silverlight 2.0 to launch early next year

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 3:27 PM by Eric

Extra points for saying "pretty gnarly" in a public blog post viewed by just about every ASP.NET developer out there...

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 3:47 PM by Gill Cleeren

Great! I have done quite some talks on Silverlight already, and I have heard people wondering if the change between Siverlight 1.0 and Silverlight 1.1 is significant. Now with a full upgrade of the number to 2.0, the BIG difference will be more obvious.

I fully support this change!

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 3:54 PM by Donny

Hi, Scott. Could you tell us whether the clipboard support for text as well as image data will get into the Silverlight 2.0 train?

And thanks for the great news regarding the roadmap!

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 4:02 PM by Darren

Most importantly will we be getting raw sockets network access?

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 4:05 PM by dancoe

Cant wait for it.

# Techzi &raquo; Blog Archive &raquo; Silverlight 2.0 to launch early next year

Pingback from  Techzi  &raquo; Blog Archive   &raquo; Silverlight 2.0 to launch early next year

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 4:11 PM by Arne Claassen

Scott,

Fantastic news on Silverlight 2.0. Been working with 1.1 for a while and just having the CLR and a retained graphics mode canvas was already such a pleasure to work with. The more parity we can get with WPF the better.

Question on the networking. It looked like everything you mentioned was stateless http based protcols. Is there any plan for socket support planned so that stateful protocols could be implemented?

# Silverlight 1.1 becomes Silverlight 2.0 | Dave Bost

Thursday, November 29, 2007 4:14 PM by Silverlight 1.1 becomes Silverlight 2.0 | Dave Bost

Pingback from  Silverlight 1.1 becomes Silverlight 2.0 | Dave Bost

# .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) (Scott Gu/ScottGu&apos;s Blog) at BTT | Blog The Tech

Pingback from  .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) (Scott Gu/ScottGu&apos;s Blog) at  BTT | Blog The Tech

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 4:17 PM by Roger Jennings

Will Entity Framework Beta 3 and the ADO.NET Data Services preview arrive with the other bits next week?

--rj

Pingback from oakleafblog.blogspot.com/.../aspnet-net-35-extensions-preview-to.html

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 4:20 PM by Eric

Dang, Scott, what're you all trying to do?  Make us beat our deadlines and get raises or something!!?!?!  sheesh.

;)

# .NET Web Product Roadmap ASP.NET, Silverlight, IIS7 - ScottGus Blog &laquo; Acetylene :::::: the i3 web team

Pingback from  .NET Web Product Roadmap ASP.NET, Silverlight, IIS7 - ScottGus Blog &laquo; Acetylene :::::: the i3 web team

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 4:31 PM by Jeff

I suggest that with the teams excellent hard work, they should go on vacation for a year so I can catch up. Seriously, it's like a full time job just to stay on top of all the new goodies.

# ASP.NET 3.5 Extensions and Silverlight 2.0 roadmap

Thursday, November 29, 2007 4:32 PM by Weblog :: Boris Ševo

Excellent news are coming from Microsoft! Next week we can expect first public preview of ASP.NET Extensions

# Silverlight 1.1 is now Silverlight 2.0 - see the very useful links for information on timeframes and functionality

Thursday, November 29, 2007 4:41 PM by Dave Glover "Down Under (Oz)"

weblogs.asp.net/.../net-web-product-roadmap-asp-net-silverlight-iis7.aspx

# re: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

Thursday, November 29, 2007 4:42 PM by Dominic Green

Pingback from Ctrl-Alt-Die Silverlight V1.0 has been going for a short time now...

# Silverlight 2.0 és további megdöbbentő hírek

Thursday, November 29, 2007 4:42 PM by zbatorfi

Mindig is zavart, hogy az &quot;igazi&quot; Silverlight verziót a lekicsinylő 1.1-es verziószámmal illették

# Silverlight 2.0, Visual Studio 2008, new Alpha tools for Silverlight... hot winter!

Thursday, November 29, 2007 4:52 PM by Laurent Bugnion (GalaSoft)

Silverlight 2.0, Visual Studio 2008, new Alpha tools for Silverlight... hot winter!

# Silverlight 1.1 diventa 2.0

Thursday, November 29, 2007 4:53 PM by Antonio

# Silverlight 2.0 und ASP .NET 3.5 Extensions - die Microsoft .NET Web Product Roa

Thursday, November 29, 2007 4:57 PM by OutOfCoffeeException