.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

# Big announcements on Silverlight, ASP.NET and IIS7

Thursday, November 29, 2007 4:58 PM by Pla.NET Southeast!

This morning Scott Guthrie , a big name to those in the the ASP.NET community, published a great comprehensive

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

Thursday, November 29, 2007 5:03 PM by Adham Shaaban

Thanks for the roadmap Scott and all the great stuff you and your team have been doing!  It's always good to have an idea of what's coming down the road, I wish all Microsoft teams offered transparent roadmaps like this.

# Silverlight 1.1 is now Silverlight 2.0

Thursday, November 29, 2007 5:03 PM by Backstage at MED

Cool! There are so many additional features that the Silverlight team is adding to it that instead of

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

Thursday, November 29, 2007 5:06 PM by Mike

Thanks for the update Scott.  You didn't mention anything about Web Deployment projects.  Are they going to be updated for VS2008?  My company uses these things tremendously and I understand the current add-in is not compatible with VS2008.

# New web application deployment framework for IIS 7

Thursday, November 29, 2007 5:06 PM by Laurent Kempé

This announcement from Scott sounds really cool: We will also shortly begin sharing details of a new

# Silverlight 2.0 announced &laquo; Microsoft: UK Web Agencies blog

Thursday, November 29, 2007 5:14 PM by Silverlight 2.0 announced « Microsoft: UK Web Agencies blog

Pingback from  Silverlight 2.0 announced &laquo; Microsoft: UK Web Agencies blog

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

Thursday, November 29, 2007 5:24 PM by b paul

Way to go Scott and team!

# Silverlight1.1 は Silverlight2.0 へ

Thursday, November 29, 2007 5:39 PM by かるあ のメモ

Quick update on Silverlight (Somasegar's WebLog)より

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

Thursday, November 29, 2007 5:44 PM by Frank

Any plans for Linq to SQL in Silverlight 2.0?  Or at least a way to easily consume common .NET data models at the Silverlight tier?  

# "Call me 2.0... Silverlight 2.0"

Thursday, November 29, 2007 5:45 PM by Andrej Tozon's blog

Right... no more &quot;Mister 1.1&quot;, no more Alpha - Silverlight 2.0 Beta is expected in Q1 2008

# Big announcements on Silverlight, ASP.NET and IIS7

Thursday, November 29, 2007 5:46 PM by Noticias externas

This morning Scott Guthrie , a big name to those in the the ASP.NET community, published a great comprehensive

# Hebi Flash Blog &raquo; Silverlight 2 annonc??

Thursday, November 29, 2007 5:52 PM by Hebi Flash Blog » Silverlight 2 annonc??

Pingback from  Hebi Flash Blog &raquo; Silverlight 2 annonc??

# Free People Searches &raquo; Silverlight 1.1 is now Silverlight 2.0 - see the very useful links for information on timeframes and functionality

Pingback from  Free People Searches &raquo; Silverlight 1.1 is now Silverlight 2.0 - see the very useful links for information on timeframes and functionality

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

Thursday, November 29, 2007 5:55 PM by Arnoud

Good work... thank you for sharing this. If only.... sniff...sockets...are you teasing us and still forcing us to use Flash? ;-)

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

Thursday, November 29, 2007 6:01 PM by Pierre

Well all that fuss must have hurt the silverlight developer's adoption big time.

First knowing about 1.1 that early and second not knowing about its release date....

We postponned all the development on our site until 2.0 is released because of the steep tooling development involved with 1.0(lack of controls, lack of containers...) and being so close (Alpha) we preferred to wait.

You should have announced the 1.1(2.0) release earlier, that would have changed a lot of decisions.

# Silverlight 2.0

Thursday, November 29, 2007 6:03 PM by Константин Кичинский

Silverlight 1.1 умер! Да здравствует Silverlight 2.0!

# ASP.NET MVC Framework Links & Info

Thursday, November 29, 2007 6:04 PM by Simon Ince's Blog

This week is turning out to be a bit busy, so blogging is stumbling, and likely will next week too. Still,

# TechSheep &raquo; Blog Archive &raquo; .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) (Scott Gu/ScottGu&#8217;s Blog)

Pingback from  TechSheep                &raquo; Blog Archive          &raquo; .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) (Scott Gu/ScottGu&#8217;s Blog)

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

Thursday, November 29, 2007 6:15 PM by John

Hi Scott,

Great announcement and I am so glad you changed the version of Silverlight to v2. 1.1 just didn't seem right.

Now like everyone else I have a few questions (I appreciate that you can't answer everyone's but it's great that do do answer so many. It's one of the things that make your posts so great).

1) Silverlight Printing support - may not be on everyone's list but it will be at some point that is for sure. Flash printing support is pretty good (actually tried it out today) and printing is something we have raised on the Silverlight forums.

2) MVC - I like the MVC framework and was about to look at Monorail. Are there any thoughts of allowing people to use MVC in Silverlight on the client?

3) Accessibility / Search Engine Optimisation - Any plans about this (I know there was support for anchors but I was wondering if any of the enhancements you mentioned for ajax would filter to Silverlight (back and forward support, history and perma links)?

4) CTP - I was thinking of learning Silverlight 1.0 with Script# but I really want to start using Silverlight 2. Any chance of a CTP to let people start preparing for the Beta(as the current alpha is just too out of date)?

Cheers and great work!

John

# Microsoft decide rebatizar Silverlight 1.1 como Silverlight 2.0...

Thursday, November 29, 2007 6:20 PM by Cláudio Ralha

Amigos, essa novidade é para aqueles que já estão vivendo os tempos do WPF e tecnologias e produtos...

# Beta of Silverlight 2.0 with Go-Live license in Q1 of 2008

Thursday, November 29, 2007 6:47 PM by Noticias externas

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

# Free People Searches &raquo; Beta of Silverlight 2.0 with Go-Live license in Q1 of 2008

Pingback from  Free People Searches &raquo; Beta of Silverlight 2.0 with Go-Live license in Q1 of 2008

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

Thursday, November 29, 2007 7:04 PM by Long Nguyen

Looking forward to MVC articles. Thanks.

# MSDN Blog Postings &raquo; ASP.NET MVC Framework Links &amp; Info

Thursday, November 29, 2007 7:10 PM by MSDN Blog Postings » ASP.NET MVC Framework Links & Info

Pingback from  MSDN Blog Postings  &raquo; ASP.NET MVC Framework Links &amp; Info

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

Thursday, November 29, 2007 7:12 PM by Andrei Rinea

I see nothing mentioned about increased browser support in Silverlight 2.0. Something like... Opera perhaps?! :(

Opera fan,

Andrei Rinea.

# Mr. Guthrie Rolls The .NET Road Map

Thursday, November 29, 2007 7:32 PM by Loosely Coupled Human Code Factory

I'm not even going to write much on this road map topic, I'm just looking forward to the ASP.NET MVC. ...

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

Thursday, November 29, 2007 7:36 PM by Nathan

What about a url rewriting module for IIS 7?

# &raquo; Exploring the Silverlight 2.0 &#8220;go-live&#8221; license | The Universal Desktop | ZDNet.com

Pingback from  &raquo; Exploring the Silverlight 2.0 &#8220;go-live&#8221; license | The Universal Desktop | ZDNet.com

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

Thursday, November 29, 2007 8:30 PM by Leon

Dude! C'mon! All the tease and none of the squeeze?! I simply can't wait for next week now. :)

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

Thursday, November 29, 2007 8:46 PM by Eric

Great!

I'm really looking forward for all of this!

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

Thursday, November 29, 2007 8:59 PM by Paraag Kantharia

Thanks Scott,

Pl. share some news about the latest happenings in " DLR ". You haven't blogged much on it yet, though its the most wanted support.

Pl. blog upcoming informative news on IronRuby, IronPython and Dynamic VB.

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

Thursday, November 29, 2007 9:04 PM by Rupak Ganguly

Kudos! <bow> Great work guys! Keeps me drawn to code each day.

# Silverlight 2.0 and the Internet OS &laquo; Ed Silverton

Thursday, November 29, 2007 9:26 PM by Silverlight 2.0 and the Internet OS « Ed Silverton

Pingback from  Silverlight 2.0 and the Internet OS &laquo; Ed Silverton

# JasonJackson.com &raquo; Post Topic &raquo; Silverlight 2 and IIS 7 Release Info

Pingback from  JasonJackson.com  &raquo; Post Topic   &raquo; Silverlight 2 and IIS 7 Release Info

# First ASP.NET MVC Framework Preview Next Week

Thursday, November 29, 2007 9:37 PM by Guru Stop

First ASP.NET MVC Framework Preview Next Week

# Microsoft rethinks Silverlight versioning scheme and plans to add more rich WPF features

Thursday, November 29, 2007 9:58 PM by hacked.brain

Microsoft rethinks Silverlight versioning scheme and plans to add more rich WPF features

# .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) - ScottGu's Blog

Thursday, November 29, 2007 10:06 PM by Technoeuphoria!

Scott Gu&#39;s post on Silverlight 1.1 being rebranded to Silverlight 2.0 (and the features expected

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

Thursday, November 29, 2007 10:24 PM by FrustratedArchitect

Scott,

How does SharePoint (WSS) tie in with respect to this roadmap? There's a lot of SharePoint hype and momentum; Will there be a point where the base ASP.Net platform will be easily working with SharePoint? As of know integrating ASP.Net apps and SharePoint is pretty much a huge pain; one has to look at only the following post:

blogs.msdn.com/.../application-development-on-moss-2007-amp-wss-v3.aspx

Since you're the GM for development tools, when are we likely to get the kind of tooling and guidance  for SharePoint that's currently available for ASP.Net ?

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

Thursday, November 29, 2007 10:27 PM by IronRuby

Hi Scott,

A Little suggestion here. How about offering us a " Extension Manager" which allows us to keep track of all installed extensions by asp.net team as well as 3rd party developers also.

This "Extension Manager" also allows us to delete extesnions with ease.

DreamWeaver always had this Extension Manager. Which helps us to keep track, when we are confused with the extensions versions as well as Extensions already present or absent on the system.

Just my suggestion. You are doing great things ofcourse.

# Silverlight/ASP.NET/IIS7 Product Roadmap

Thursday, November 29, 2007 10:35 PM by Frank La Vigne

# Silverlight 2.0 Roadmap

Thursday, November 29, 2007 11:35 PM by Bob's Blog

Scott Guthrie announced on his blog the product roadmap for ASP.Net, IIS7 and Silverlight. With the enhancements

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

Thursday, November 29, 2007 11:50 PM by Arun Sarma

Really kewl stuff, Scott! WPF UI Framework, Rich COntrols and Rich networking..really got my eyes bigger! :)

# ASP.NET 3.5 Extensions预览版即将发布

Thursday, November 29, 2007 11:55 PM by TerryLee

从Scott Guthrie的博客上得知,下星期微软即将发布ASP.NET 3.5 Extensions预览版。在ASP.NET 3.5 Extensions中将会提供:

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

Friday, November 30, 2007 12:16 AM by James

Dear Scott,

We are waiting for the Great "MVC CTP" next week.

Please make sure, we can easily " UNINSTALL CTP " without leaving any traces behind. This will save us for errors as well as help us to INSTALL New version of CTP's, when they arrive.

We believe, there must be aleast one CTP every 2 months. Do blog something on DLR support with MVC.

Thanks

James

# Link Listing - November 29, 2007

Friday, November 30, 2007 12:28 AM by Christopher Steen

Link Listing - November 29, 2007

# Link Listing - November 29, 2007

Friday, November 30, 2007 12:28 AM by Christopher Steen

ASP.NET Testing ScottGu: Alternate View Engines with ASP.NET MVC (NVelocity) [Via: Chad Myers ] Link...

# Silverlight 1.1 Changed to Silverlight 2.0

Friday, November 30, 2007 12:37 AM by Adrian Roman's Blog

Silverlight 1.1 Changed to Silverlight 2.0

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

Friday, November 30, 2007 12:39 AM by Jim

Will SL 1.0 continue to be available? If yes, will the new features (like databinding, control templates etc) be available in the Javascript version of SL?

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

Friday, November 30, 2007 12:42 AM by Ali

Any update on project jasper and its integration with ASP.Net?  

# Izindaba #20

Friday, November 30, 2007 12:48 AM by From the software development trenches

Time for another weekly round-up of developer news that focuses on .NET, agile and general development

# Silverlight 1.1 正式更名为 Silverlight 2.0

Friday, November 30, 2007 12:51 AM by Felix's Notes on Evangelism

两个月前我们 在Windows和Mac上发布了Silverlight 1.0 ,并公布了在Linux上交付Silverlight的计划。Silverlight 1.0专注于在浏览器上提供富媒体场景,并支持JavaScript/AJAX编程模型。

# RoadMAP: .NET Web Tekniker

Friday, November 30, 2007 1:10 AM by Johan Lindfors

Vår topp-bloggare Scott Guthrie (som verkar har 96 timmar på varje dygn) har återigen postat en matnyttig

# Melwye.Com &raquo; Beta of Silverlight 2.0 with Go-Live license in Q1 of 2008

Pingback from  Melwye.Com &raquo; Beta of Silverlight 2.0 with Go-Live license in Q1 of 2008

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

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

# Silverlight 2.0

Friday, November 30, 2007 1:55 AM by Infosys | Microsoft

I have been playing around with Silverlight for a while now and like all, have been eagerly waiting to get some out-of-box controls that will ease the development effort. It is good to hear that Silverlight 2.0 will contain a...

# RoadMAP: .NET Web Tekniker

Friday, November 30, 2007 1:55 AM by Noticias externas

Vår topp-bloggare Scott Guthrie (som verkar har 96 timmar på varje dygn) har återigen postat en matnyttig

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

Friday, November 30, 2007 2:12 AM by anonymous

It would be rocking if there was a Silverlight Mobile release around the same timeframe as 2.0 on the desktop.

# Silverlight 2.0!!

Friday, November 30, 2007 2:16 AM by bkchung's WebLog

.NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) - ScottGu's Blog Somasegar's WebLog Quick update

# 곧 나올 ASP.NET 3.5 Extensions 프리뷰 내용들

Friday, November 30, 2007 2:42 AM by bkchung's WebLog

.NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) - ScottGu's Blog 마이크로소프트의 차세대 웹 전략으로 Silverlight가

# Silverlight 2.0 release

Friday, November 30, 2007 2:52 AM by Kathy Kam

I have been quiet on my blog since my Tech Ed trips and the Acropolis annoucement. Some of you may wonder

# Silverlight 2.0!

Friday, November 30, 2007 2:55 AM by develop .net

Scott Guthrie のブログで " .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) " というエントリが公開されました。すでに(英語版が)完成している

# Silverlight 2.0

Friday, November 30, 2007 2:57 AM by jesfer

Silverlight 2.0

# Silverlight 2.0 Beta coming soon ... (with Rich Controls)

Friday, November 30, 2007 3:03 AM by Noticias externas

I have been quiet on my blog since my Tech Ed trips and the Acropolis annoucement. Some of you may wonder

# Silverlight

Friday, November 30, 2007 3:13 AM by Toutoune DevZone

Scott Guthrie, le grand chef Silverlight, vient d'annoncer que la prochaine version sera la 2.0, qu'elle

# 1.1 just became 2.0

Friday, November 30, 2007 3:24 AM by The Curtain Raiser

You probably expected this :-) How fundamental are the feature improvements between Silverlight 1.0 and

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

Friday, November 30, 2007 3:31 AM by ScottGu

Hi Jesus,

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

Silverlight 2.0 will ship separately from the ASP.NET Extensions.  They'll be two different releases that you can download.

Hope this helps,

Scott

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

Friday, November 30, 2007 3:33 AM by ScottGu

Hi Ian,

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

Yes - you'll be able to retrieve assets like images from compiled assemblies as well as our application package format (more details on this later).

All image and mediaelement controls also now support being set to point to a URL, as well as having an in-memory byte stream set to them.

Hope this helps,

Scott

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

Friday, November 30, 2007 3:34 AM by ScottGu

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

Yes - we are working on a WPF Windows datagrid in addition to a WPF Silverlight one.  They will be compatible with each other (one will be a super set of the other).  Our hope is to ship the WPF Windows Datagrid next year, and then also role it into a future service pack of the .NET Framework.

Hope this helps,

Scott

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

Friday, November 30, 2007 3:35 AM by ScottGu

Hi Chad,

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

My hope is that the tutorial series will help people come up to speed on the feature-set and get a good mental picture of how the different pieces fit together.  

Hope this helps,

Scott

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

Friday, November 30, 2007 3:36 AM by ScottGu

Hi Mcbeev,

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

We will be shipping a VS 2008 Web Deployment Project update either tomorrow or early next week.

Thanks,

Scott

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

Friday, November 30, 2007 3:37 AM by ScottGu

Hi Doctor,

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

We are making some good progress on this.  We don't have any announcements just yet to make - but things are progressing there....

Hope this helps,

Scott

# Silverlight 1.1 je Silverlight 2.0

Friday, November 30, 2007 3:37 AM by Peter Zajíc

Tim Sneath na svém blogu oznámil, že dochází k přejmenování dalšího release technologie Silverlight ze

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

Friday, November 30, 2007 3:37 AM by ScottGu

Hi Simon,

>>>>>>> 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 :)

We are working on adding socket support as well.  We haven't finalized exactly which preview this will show up in - but it is definitely on our roadmap.

Thanks,

Scott

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

Friday, November 30, 2007 3:38 AM by ScottGu

Hi Steven,

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

The VS 2008 version will ship either tomorrow or early next week.

Hope this helps,

Scott

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

Friday, November 30, 2007 3:39 AM by ScottGu

Hi Todd,

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

We'll release Silverlight 2.0 on all the platforms we build ourselves simultaneously (Mac + Windows - including Windows 2000, XP, Vista, WS03, WS08, etc).

Hope this helps,

Scott

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

Friday, November 30, 2007 3:40 AM by ScottGu

Hi bill,

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

We are making good progress on the DLR and our dynamic languages implementation in general.  

Hope this helps,

Scott

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

Friday, November 30, 2007 3:41 AM by ScottGu

Hi Gary,

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

I should do a blog post in the future on this.  There are actually a lot of nice new IIS7 features in Windows Server 2008.  These will also show up in Vista with SP1.

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

We are working closely with them and they are making progress.  I don't think we have an exact ETA on when the final version will ship - but hopefully as soon as is possible.

Hope this helps,

Scott

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

Friday, November 30, 2007 3:42 AM by ScottGu

Hi Colin,

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

We'll be making some announcements about mobile devices in the future.  We definitely intend to play in this space.

Hope this helps,

Scott

# .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) - ScottGu&#8217;s Blog &laquo; Noocyte&#8217;s Weblog

Pingback from  .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) - ScottGu&#8217;s Blog &laquo; Noocyte&#8217;s Weblog

# Silverlight 2.0 and ASP.NET 3.5 Extensions

Friday, November 30, 2007 3:49 AM by Architects Rule!

On 11/29, Microsoft announced continued innovation and momentum around the Web platform including more

# Web 2.0 - Social Media - Internet News - Blogging &raquo; Silverlight 1.1 c&#39;est has been, all?? hop vive Silverlight 2.0

Pingback from  Web 2.0 - Social Media - Internet News - Blogging &raquo; Silverlight 1.1 c&#39;est has been, all?? hop vive Silverlight 2.0

# MSDN Blog Postings &raquo; RoadMAP: .NET Web Tekniker

Friday, November 30, 2007 4:11 AM by MSDN Blog Postings » RoadMAP: .NET Web Tekniker

Pingback from  MSDN Blog Postings  &raquo; RoadMAP: .NET Web Tekniker

# Rob&#8217;s Usability Development Blog: Silverlight, ASP.NET &#038; Ajax &raquo; Silverlight 1.1 wordt Silverlight 2.0

Pingback from  Rob&#8217;s Usability Development Blog: Silverlight, ASP.NET &#038; Ajax  &raquo; Silverlight 1.1 wordt Silverlight 2.0

# NooDev &#8216;n&#8217; Tek &raquo; Blog Archive &raquo; Silverlight 2.0, IIS 7, ASP.NET 3.5, et autres !

Pingback from  NooDev &#8216;n&#8217; Tek  &raquo; Blog Archive   &raquo; Silverlight 2.0, IIS 7, ASP.NET 3.5, et autres !

# News about MVC framework and other bits from MS | Vladan.Strigo.NET

Pingback from  News about MVC framework and other bits from MS | Vladan.Strigo.NET

# News about MVC framework and other bits from MS | NETMedia blog

Pingback from  News about MVC framework and other bits from MS | NETMedia blog

# Silverlight Roadmap

Friday, November 30, 2007 6:05 AM by From Dusk Till Light

Scott Guthrie made an announcement about the roadmap for the Silverlight technology in his blog. He stated that we can expect a Beta version of Silverlight in Q1 of 2008 and listed a lot of new features which are planned to be included. Since my first

# DG-kult &raquo; Web 2.0 - Social Media - Internet News - Blogging ?? Silverlight &#8230;

Pingback from  DG-kult &raquo; Web 2.0 - Social Media - Internet News - Blogging ?? Silverlight &#8230;

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

Friday, November 30, 2007 7:24 AM by Shahed Khan (MVP C#)

The .NET Product Roadmap from Scott Gu's Blog:weblogs.asp.net/.../net-web-product-roadmap-asp-net-silverlight-iis7.aspx...

# New Developer Tool Roadmap for Microsoft ;) &laquo; blog.jemm.net

Pingback from  New Developer Tool Roadmap for Microsoft ;) &laquo; blog.jemm.net

# FYI: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) von Damir Tomicic (30.11.2007, 12:58) in Gruppe &ldquo;Visual Studio Team System&rdquo; &raquo; Beitrag &raquo; SharePoint

Pingback from  FYI: .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) von Damir Tomicic (30.11.2007, 12:58) in Gruppe &ldquo;Visual Studio Team System&rdquo; &raquo; Beitrag &raquo; SharePoint

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

Friday, November 30, 2007 9:28 AM by Gyun's Blog

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

# ASP.NET 3.5 Extensions and Silverlight 2.0

Friday, November 30, 2007 9:48 AM by Mike Ormond's Blog

There's Mike and I in Birmingham on Wednesday talking about Silverlight 1.1 and ASP.NET 3.5 and meanwhile

# ASP.NET 3.5 Extensions and Silverlight 2.0

Friday, November 30, 2007 10:10 AM by Noticias externas

There&#39;s Mike and I in Birmingham on Wednesday talking about Silverlight 1.1 and ASP.NET 3.5 and meanwhile

# ASP.NET 3.5 Extensions Release

Friday, November 30, 2007 10:24 AM by Scott Dorman

ASP.NET 3.5 Extensions Release

# Ruta de trabajo de Microsoft para el desarrollo web

Friday, November 30, 2007 10:33 AM by Ruta de trabajo de Microsoft para el desarrollo web

Pingback from  Ruta de trabajo de Microsoft para el desarrollo web

# Ruta de trabajo de Microsoft para el desarrollo web

Friday, November 30, 2007 10:33 AM by Ruta de trabajo de Microsoft para el desarrollo web

Pingback from  Ruta de trabajo de Microsoft para el desarrollo web

# Good Links - Nov 30, 2007 &laquo; Emad&#8217;s Weblog

Friday, November 30, 2007 10:46 AM by Good Links - Nov 30, 2007 « Emad’s Weblog

Pingback from  Good Links - Nov 30, 2007 &laquo; Emad&#8217;s Weblog

# Microsoft Silverlight 2.0 coming early next year

Friday, November 30, 2007 10:52 AM by Microsoft Silverlight 2.0 coming early next year

Pingback from  Microsoft Silverlight 2.0 coming early next year

# Microsoft Silverlight Tools Alpha for Visual Studio 2008 fails reinstallation

Friday, November 30, 2007 10:55 AM by Al Pascual

Last week the latest version of Visual Studio 2008 was released, so many of us, have been really busy

# Microsoft updates .NET Web development tools roadmap

Friday, November 30, 2007 11:19 AM by Microsoft News Tracker

Microsoft Developer Division General Manager Scott Guthrie today revealed the roadmap for a series of additional Web development products that build on top of last week&#8217;s RTM of Visual Studio and .NET FX 3.5. In outline form with liberal quoting

# Silverlight 1.1 is now Silverlight 2.0

Friday, November 30, 2007 11:37 AM by Zhiming Xue's WebLog

The Silverlight product team has decided to rename Silverlight 1.1 to Silverlight 2.0. Check out these

# .NET Framework开源了!ASP.NET 3.5扩展发布!Silverlight 2.0发布!

Friday, November 30, 2007 11:39 AM by 黄耀辉

随着VS2008和.NET Framework3.5的正式版于11月16日发布,微软给咱们.NET拥戴者的惊喜真是一浪紧接一浪啊。

# Innovating on Web Capabilities

Friday, November 30, 2007 12:01 PM by Crossbar

Microsoft has continued to innovate on its Web development capabilities, one of the five core capabilities

# SilverLight 2.0, Parallel FX and ASP.NET MVC &laquo; London Coder

Friday, November 30, 2007 12:04 PM by SilverLight 2.0, Parallel FX and ASP.NET MVC « London Coder

Pingback from  SilverLight 2.0, Parallel FX and ASP.NET MVC &laquo; London Coder

# Innovating on Web Capabilities

Friday, November 30, 2007 12:12 PM by Noticias externas

Microsoft has continued to innovate on its Web development capabilities, one of the five core capabilities

# MSDN Blog Postings &raquo; Innovating on Web Capabilities

Friday, November 30, 2007 1:12 PM by MSDN Blog Postings » Innovating on Web Capabilities

Pingback from  MSDN Blog Postings  &raquo; Innovating on Web Capabilities

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

Friday, November 30, 2007 1:30 PM by hotfrost

Hi Scott.

thanks for awesome job you guys doing. quick question...

is there any way, downloader object in new release will not trancate the byte data for responseText property?

if there is byte data supplied to downloader, the responseText supplies the string of that data to the first 0 (thiking it is the end of the string??)

thanks,

HF

# Silverlight 2.0 y ASP.NET 3.5 Extensions

Friday, November 30, 2007 2:09 PM by WillyXoft .NET

Dado grandes cambios en Silverlight en Microsoft a han decidido cambiarle el versionamiento de &ldquo;1.1&rdquo;...

# Webdevelopment Blog &raquo; Silverlight 2.0 and ASP.NET 3.5 Extensions - MVC Framework : Scaffolding Framework : ADO.NET Entity Framework : Astoria

Pingback from  Webdevelopment Blog &raquo; Silverlight 2.0 and ASP.NET 3.5 Extensions - MVC Framework : Scaffolding Framework : ADO.NET Entity Framework : Astoria

# Silverlight 2.0 y ASP.NET 3.5 Extensions &laquo; WillyXoft

Friday, November 30, 2007 2:16 PM by Silverlight 2.0 y ASP.NET 3.5 Extensions « WillyXoft

Pingback from  Silverlight 2.0 y ASP.NET 3.5 Extensions &laquo; WillyXoft

# Silverlight 2.0 (formerly known as 1.1) Announced

Friday, November 30, 2007 2:56 PM by Jesse Ezell Blog

ScottGu dropping the news as usual. Most interesting feature, IMO, is the upgraded communication support

# DMC &raquo; Blog Archive &raquo; Socket Support Silverlight 2.0

Friday, November 30, 2007 3:30 PM by DMC » Blog Archive » Socket Support Silverlight 2.0

Pingback from  DMC  &raquo; Blog Archive   &raquo; Socket Support Silverlight 2.0

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

Friday, November 30, 2007 3:46 PM by Walter Stiers - Academic Relations Team (BeLux)

.NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) is a blog entry from ScottGu's Blog , summarizing

# Vem ai o Silverlight 2.0 - Prepara-se para 2008 ...

Friday, November 30, 2007 4:09 PM by Ramon Durães

Silverlight 2.0 Essa semana tivemos um dos anúncios mais importantes desde as primeiras versões do WPF/E

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

Friday, November 30, 2007 4:18 PM by Noticias externas

.NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) is a blog entry from ScottGu&#39;s Blog , summarizing

# Microsoft puts spotlight on Silverlight | Alanat IT News

Friday, November 30, 2007 4:32 PM by Microsoft puts spotlight on Silverlight | Alanat IT News

Pingback from  Microsoft puts spotlight on Silverlight | Alanat IT News

# Vem ai o Silverlight 2.0 - Prepara-se para 2008 ...

Friday, November 30, 2007 4:32 PM by Ramon Durães

Silverlight 2.0 Essa semana tivemos um dos anúncios mais importantes desde as primeiras versões do WPF

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

Friday, November 30, 2007 5:32 PM by PaoloDiM

Oh, how I love competition!  Adobe is a grat company, but in some respects it was too great, in that it ate most of its competitors.  The same is true for Microsoft, only more so.  I own a company that specializes in licensing, and Microsoft is by far our largest vendor.  At parties, I hear very often talk about a "Microsoft monopoli".  Since I am in business of selling computer software solutions for business, I assure them that if something better came along, our clients would shift very very quickly, and therefore naturally so woulde we.  Before basically specializing in Microsoft licensing, we were IBM resellers (anyone here old enough to remember OS/2?).  The point here is that if this technology push is successful, there witll be squaks about the mythical "Microsoft monopoli".  But it will be false again, any gain (and I believe that there will be some)will be the result of competitive dynamics.  Adobe will then provide us with better product to regain market share, and so on .... .  We developers will gain because we will be able to produce better software, the clients will gain on their competition if we perform, and .... Viva Competition!

Paolo

# Silverlight Cream for November 30, 2007 -- #139

Friday, November 30, 2007 5:40 PM by Community Blogs

A bunch of unsubmitted stuff I&#39;ve found in my travels: Akira Onishi has added page zoom to the page

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

Friday, November 30, 2007 6:20 PM by Gauthier Segay

<cite>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.</cite>

I once got my hand on the asp.net future dynamic data bits, know that you will use MVC for the release really rocks!

# Roadmap para productos web de .NET (ASP.NET, Silverlight, IIS7) &laquo; Thinking in .NET

Pingback from  Roadmap para productos web de .NET (ASP.NET, Silverlight, IIS7) &laquo; Thinking in .NET

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

Friday, November 30, 2007 7:52 PM by Juan ´María

Hi all, you can read this post in spanish here:

thinkingindotnet.wordpress.com/.../roadmap-para-productos-web-de-net-aspnet-silverlight-iis7

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

Friday, November 30, 2007 7:52 PM by David Mackey

Scott - This is great!!

# Microsoft puts spotlight on Silverlight

Friday, November 30, 2007 8:10 PM by Microsoft puts spotlight on Silverlight

Pingback from  Microsoft puts spotlight on Silverlight

# Futures News &raquo; Microsoft puts spotlight on Silverlight

Friday, November 30, 2007 8:20 PM by Futures News » Microsoft puts spotlight on Silverlight

Pingback from  Futures News &raquo; Microsoft puts spotlight on Silverlight

# Business Daily News &raquo; Microsoft puts spotlight on Silverlight

Pingback from  Business Daily News &raquo; Microsoft puts spotlight on Silverlight

# Alanat Coop News &raquo; Microsoft puts spotlight on Silverlight

Pingback from  Alanat Coop News &raquo; Microsoft puts spotlight on Silverlight

# Cossacks Breaking News &raquo; Microsoft puts spotlight on Silverlight

Pingback from  Cossacks Breaking News &raquo; Microsoft puts spotlight on Silverlight

# Cossacks Breaking News &raquo; Microsoft puts spotlight on Silverlight

Pingback from  Cossacks Breaking News &raquo; Microsoft puts spotlight on Silverlight

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

Friday, November 30, 2007 11:20 PM by Telmo Sampaio

Scott,

Great job! Quick question: will Silverlight 2.0 support the System.Drawing namespace? I have needs to manipulate bitmap data.

# Futile &raquo; Blog Archive &raquo; links for 2007-12-01

Friday, November 30, 2007 11:22 PM by Futile » Blog Archive » links for 2007-12-01

Pingback from  Futile  &raquo; Blog Archive   &raquo; links for 2007-12-01

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

Friday, November 30, 2007 11:24 PM by vikram

Thaks for the tons of information. Just one question will silverlight 2.0 support Windows 2000?

# Silverlight 1.1 is now Silverlight 2.0

Friday, November 30, 2007 11:26 PM by Ross Hawkins

Silverlight 1.1 is now Silverlight 2.0

# ??????.Net Web ??????????????? | liu6's blog

Friday, November 30, 2007 11:37 PM by ??????.Net Web ??????????????? | liu6's blog

Pingback from  ??????.Net Web ??????????????? | liu6's blog

# Watch this space - Project Astoria

Saturday, December 01, 2007 12:34 AM by Allan's Best Week Ever

Hey Albany, thank you for hosting me at the MSDN Event with Lindsay . Looking forward to connecting with

# Free People Searches &raquo; Watch this space - Project Astoria

Saturday, December 01, 2007 12:53 AM by Free People Searches » Watch this space - Project Astoria

Pingback from  Free People Searches &raquo; Watch this space - Project Astoria

# MSDN Blog Postings &raquo; Watch this space - Project Astoria

Saturday, December 01, 2007 1:17 AM by MSDN Blog Postings » Watch this space - Project Astoria

Pingback from  MSDN Blog Postings  &raquo; Watch this space - Project Astoria

# Watch this space - Project Astoria

Saturday, December 01, 2007 1:27 AM by Noticias externas

Hey Albany, thank you for hosting me at the MSDN Event with Lindsay . Looking forward to connecting with

# ux.artu.tv &raquo; Blog Archive &raquo; .NET Web Roadmap announced, Silverlight news

Pingback from  ux.artu.tv  &raquo; Blog Archive   &raquo; .NET Web Roadmap announced, Silverlight news

# Calculated Decision &raquo; Blog Archive &raquo; .Net Web Product Roadmap

Pingback from  Calculated Decision  &raquo; Blog Archive   &raquo; .Net Web Product Roadmap

# Microsoft Drops Details On Silverlight 2.0 | Alanat IT News

Saturday, December 01, 2007 5:35 AM by Microsoft Drops Details On Silverlight 2.0 | Alanat IT News

Pingback from  Microsoft Drops Details On Silverlight 2.0 | Alanat IT News

# Microsoft Drops Details On Silverlight 2.0 | Alanat IT News

Saturday, December 01, 2007 5:41 AM by Microsoft Drops Details On Silverlight 2.0 | Alanat IT News

Pingback from  Microsoft Drops Details On Silverlight 2.0 | Alanat IT News

# Cossacks Breaking News &raquo; Microsoft Drops Details On Silverlight 2.0

Pingback from  Cossacks Breaking News &raquo; Microsoft Drops Details On Silverlight 2.0

# Futures News &raquo; Microsoft Drops Details On Silverlight 2.0

Saturday, December 01, 2007 6:12 AM by Futures News » Microsoft Drops Details On Silverlight 2.0

Pingback from  Futures News &raquo; Microsoft Drops Details On Silverlight 2.0

# Cossacks Breaking News &raquo; Microsoft Drops Details On Silverlight 2.0

Pingback from  Cossacks Breaking News &raquo; Microsoft Drops Details On Silverlight 2.0

# Microsoft Drops Details On Silverlight 2.0

Saturday, December 01, 2007 6:52 AM by Microsoft Drops Details On Silverlight 2.0

Pingback from  Microsoft Drops Details On Silverlight 2.0

# Alanat Coop News &raquo; Microsoft Drops Details On Silverlight 2.0

Pingback from  Alanat Coop News &raquo; Microsoft Drops Details On Silverlight 2.0

# Microsoft Drops Details On Silverlight 2.0

Saturday, December 01, 2007 10:02 AM by Microsoft Drops Details On Silverlight 2.0

Pingback from  Microsoft Drops Details On Silverlight 2.0

# Microsoft Drops Details On Silverlight 2.0

Saturday, December 01, 2007 10:02 AM by Microsoft Drops Details On Silverlight 2.0

Pingback from  Microsoft Drops Details On Silverlight 2.0

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

Pingback from  .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) | DavideZordan.net

# Kristian Kristensen&#8217;s Blog &raquo; CTP of Parallel FX for .NET Released

Pingback from  Kristian Kristensen&#8217;s Blog &raquo; CTP of Parallel FX for .NET Released

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

Saturday, December 01, 2007 5:03 PM by H2000

Please release the sockets :o)

Silverlight is useless to our project (as well as many other) without :(

# totallydotnet Weblog

Sunday, December 02, 2007 1:44 PM by totallydotnet Weblog

Pingback from  totallydotnet Weblog

# RIABG.org &raquo; Silverlight 2.0

Sunday, December 02, 2007 4:29 PM by RIABG.org » Silverlight 2.0

Pingback from  RIABG.org &raquo; Silverlight 2.0

# Roadmap of Silverlight and .NET

Monday, December 03, 2007 1:16 AM by dotnetpathak

Microsoft have been in the news since its inception. This time, they are in the news for the series of

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

Monday, December 03, 2007 1:44 AM by Marek Istvanek

Will you add 3D graphics support to Silverlight?

Flash has Papervision3D...

# Microsoft .NET Web 相關產品計畫

Monday, December 03, 2007 3:47 AM by Tom Lee's blog

Scott Guthrie 於2007年11月29日在他的 blog 中,透漏了新的 Microsoft .NET Web 開發相關計畫 ( weblogs.asp.net/.../net-web-product-roadmap-asp-net-silverlight-iis7.aspx

# Microsoft .NET Web 相關產品計畫

Monday, December 03, 2007 4:23 AM by Noticias externas

Scott Guthrie 於2007年11月29日在他的 blog 中,透露了新的 Microsoft .NET Web 開發相關計畫 ( http://weblogs.asp.net/scottgu

# Do not say 1.1 anymore, say 2.0 !

Monday, December 03, 2007 4:45 AM by Gerard Leblanc on Silverlight 1.1

Do not say 1.1 anymore, say 2.0 !

# Silverlight 2.0

Monday, December 03, 2007 5:05 AM by Reyza

Setelah Silverlight 1.1, maka di quarter ke satu 2008, bakal &#39;terlihat&#39; Silverlight 2.0 (seperti

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

Monday, December 03, 2007 5:06 AM by Joe

What will be the size of the installation?

# RoadMap : Asp.Net 3.5

Monday, December 03, 2007 7:54 AM by BlogTech

RoadMap : Asp.Net 3.5

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

Monday, December 03, 2007 8:14 AM by Philip

An excellent and much needed Roadmap.

# Future of Silverlight

Monday, December 03, 2007 8:26 AM by Noticias externas

Late last week Scott Guthrie announced some of the plans for the next version of Silverlight . In addition

# MSDN Blog Postings &raquo; Future of Silverlight

Monday, December 03, 2007 10:22 AM by MSDN Blog Postings » Future of Silverlight

Pingback from  MSDN Blog Postings  &raquo; Future of Silverlight

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

Monday, December 03, 2007 1:23 PM by Alpha-Beta-Release Blog

Thanks for this (and other :) posts!

Your information is always very helpful !

# Silverlight 1.1 Pie Chart &laquo; Peter&#8217;s Blog

Monday, December 03, 2007 2:55 PM by Silverlight 1.1 Pie Chart « Peter’s Blog

Pingback from  Silverlight 1.1 Pie Chart &laquo; Peter&#8217;s Blog

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

Monday, December 03, 2007 3:51 PM by Bret

Any plans on including the JpegEncoder/JpegDecoder classes? One of the most common things for websites is to allow users to upload photos. Currently you have to upload the 3-6megabyte original and resize at the server, or write an active x plugin to do it client side. I'd really like to be able to use Silverlight to resize and crop images client side and then upload them to the server to reduce upload time and bandwith usage.

# NBA.com gets the Silverlight treatment

Monday, December 03, 2007 6:08 PM by James.Random()

Now those who know me well will be familiar with my love for three sports; Golf, Basketball and Football

# .Net Web Product Roadmap including Windows Media

Monday, December 03, 2007 8:05 PM by Media Mechanics

Last week Scott Guthrie (ScottGu) provided the first look at the new .Net Web Technology Roadmap. It

# .Net Web Product Roadmap including Windows Media

Monday, December 03, 2007 9:44 PM by Synergist

My colleague Harry Mower just posted a great article about the roadmap of our technology roadmap as a

# MSDN Blog Postings &raquo; .Net Web Product Roadmap including Windows Media

Pingback from  MSDN Blog Postings  &raquo; .Net Web Product Roadmap including Windows Media

# INETA Europe - European Silverlight Challenge Competition!!

Tuesday, December 04, 2007 4:27 AM by Andrew's Blog

INETA Europe - European Silverlight Challenge Competition!!

# Check out the Media Mechanics Blog

I mentioned in the past that I focus on the telecommunications and media &amp; entertainment industries.

# MSDN Blog Postings &raquo; Check out the Media Mechanics Blog

Tuesday, December 04, 2007 7:28 AM by MSDN Blog Postings » Check out the Media Mechanics Blog

Pingback from  MSDN Blog Postings  &raquo; Check out the Media Mechanics Blog

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

Tuesday, December 04, 2007 7:45 AM by prakash

Great news, I would like to have  support for rich text(being able to render html in silverlight would be great!) and xsl support in silverlight.

# Windows Media Roadmap

Tuesday, December 04, 2007 8:57 AM by Kirk Allen Evans's Blog

Last week Scott Guthrie (ScottGu) provided a first look at the new .Net Web Technology Roadmap. It gives

# MSDN Blog Postings &raquo; Windows Media Roadmap

Tuesday, December 04, 2007 10:27 AM by MSDN Blog Postings » Windows Media Roadmap

Pingback from  MSDN Blog Postings  &raquo; Windows Media Roadmap

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

Tuesday, December 04, 2007 10:57 AM by Greg

Any additional information on these would be most helpful:

a) What level of .NET winForms controls will be included in Silverlight?

b) What level of .NET framework base classes will be included in Silverlight? (a diagram with a 'S' tag of the framework classes would be nice - like is done for the compact framework)

c) Will a Silverlight application be able to be shipped as a stand alone application as well as being embedded in a web page?

d) Will Silverlight provide nearly all of the current user interaction support that JavaScript does?  This is quite important to us because we want to avoid splitting the code between C# server size and javascript client side.  We want to use a Winforms like environment.  We've found in the long run that production quality applications are much much more costly to maintain and keep working if they rely extensively on javascript.  Therefore, we try to include almost no javascript in our production applications.

e) What support will there be for a security module or security token server?  This is a big issue for us because for auditing needs we need to centralize user security and permission management.

We try to get 5+ years out a production application before undertaking a major upgrade.

Our general goal from the technology aspect is to simplify our supported platforms. This includes eliminating all VB6 code, applications that depend on VB6 com components and eliminate all windows 2000 systems.

Many commercial applications rely on vb6 com components.  Smaller software companies often have no upgrade roadmap to move away from VB6 code or VB6 based com components.

It would be nice to have system tools to help us identify all VB6 code be it in an application, com component, dll, etc.

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

Tuesday, December 04, 2007 4:46 PM by IWS

Is the .NET symbol server ready yet?

# .Net roadmap

Tuesday, December 04, 2007 11:46 PM by Craig Bailey Link Blog

A nice summary from Scott Guthrie about where ASP.NET, Silverlight and IIS7 are heading . I&#39;m continually

# Gidfood.Com &raquo; Windows Media Roadmap

Wednesday, December 05, 2007 1:03 AM by Gidfood.Com » Windows Media Roadmap

Pingback from  Gidfood.Com &raquo; Windows Media Roadmap

# Miningfroth.Com &raquo; Windows Media Roadmap

Wednesday, December 05, 2007 1:43 AM by Miningfroth.Com » Windows Media Roadmap

Pingback from  Miningfroth.Com &raquo; Windows Media Roadmap

# Silverlight 2.0 Announced

Wednesday, December 05, 2007 2:51 AM by MSDN Ireland Blog

Silverlight 1.1 2.0 recently highlighted some exciting news! First of all, obviously we have the name

# Silverlight 2.0 Announced

Wednesday, December 05, 2007 3:02 AM by Noticias externas

Silverlight 1.1 2.0 recently highlighted some exciting news! First of all, obviously we have the name

# Silverlight 2.0 Announced &laquo; { ready.for.take.off.here} Windows Server 2008, Visual Studio 2008 &amp; SQL Server 2008 Launch Wave

Pingback from  Silverlight 2.0 Announced &laquo; { ready.for.take.off.here} Windows Server 2008, Visual Studio 2008 &amp; SQL Server 2008 Launch Wave

# Ajax Girl &raquo; Blog Archive &raquo; Silverlight 1.^H^H2.0: Controls are here

Pingback from  Ajax Girl  &raquo; Blog Archive   &raquo; Silverlight 1.^H^H2.0: Controls are here

# &raquo; Daily Dose of Links - 20071205 Alvin Ashcraft&#8217;s Daily Geek Bits: Daily links plus random ramblings about development, gadgets and raising rugrats.

Pingback from  &raquo; Daily Dose of Links - 20071205 Alvin Ashcraft&#8217;s Daily Geek Bits: Daily links plus random ramblings about development, gadgets and raising rugrats.

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

Wednesday, December 05, 2007 10:29 AM by Brian

We're excited about this, but really can't justify spending more time on it until we know more about accessibility support and see some well crafted examples on how to build stuff that is accessible. Please? :)

# links for 2007-12-05 - Cyberpunk????????????

Wednesday, December 05, 2007 3:22 PM by links for 2007-12-05 - Cyberpunk????????????

Pingback from  links for 2007-12-05 - Cyberpunk????????????

# Javascript News &raquo; Blog Archive &raquo; Silverlight 1.^H^H2.0: Controls are here

Pingback from  Javascript News  &raquo; Blog Archive   &raquo; Silverlight 1.^H^H2.0: Controls are here

# Silverlight2.0

Wednesday, December 05, 2007 8:34 PM by 猿頁

遅ればせながら。 Scott Guthrieさんが中の人blogで、 今、&alpha;版で...

# .NET Product Roadmap Announcements

Wednesday, December 05, 2007 9:48 PM by Jit Ghosh's WebLog

If you have seen Scott Guthrie's recent post on the .Net Web Product roadmap , also check out my team

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

Thursday, December 06, 2007 12:23 AM by Razan

Thanks for the article.I am looking forward to the beta release of Silverlight 2.0.

# Regelwerk &raquo; Die n??chsten Versionen - .NET Web Product Roadmap

Pingback from  Regelwerk &raquo; Die n??chsten Versionen - .NET Web Product Roadmap

# .NET Web Product Roadmap

Thursday, December 06, 2007 3:32 AM by Around and About .NET World

.NET Web Product Roadmap

# Microsoft running at full steam | Nicholas Clarke

Thursday, December 06, 2007 7:08 AM by Microsoft running at full steam | Nicholas Clarke

Pingback from  Microsoft running at full steam | Nicholas Clarke

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

Thursday, December 06, 2007 11:30 AM by Dan

is ado.net data services the same as the entity framework beta 3?

# Leap of Faith at Lost In Tangent

Thursday, December 06, 2007 1:35 PM by Leap of Faith at Lost In Tangent

Pingback from  Leap of Faith at  Lost In Tangent

# Info World &raquo; Blog Archive &raquo; Microsoft looks to make data access easier for developers

Pingback from  Info World  &raquo; Blog Archive   &raquo; Microsoft looks to make data access easier for developers

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

Friday, December 07, 2007 5:27 AM by Kigorw

Hi Scott I have question.

Will have IIS7/ASP.NET comet technology support?

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

Friday, December 07, 2007 1:38 PM by abe

ok man it's been a week! Where's the ASP.NET 3.5 Extensions download link?!! :)

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

Friday, December 07, 2007 2:05 PM by Wills

Silverlight looks awesome ...

BUT ...

Blend simply HAS to be a Mac application too for designers to use ALONGSIDE their existing tools.

The fact is that DESIGNERS work on Macs..

# My New Blog

Saturday, December 08, 2007 2:16 AM by Scott Hunter

My family and I just recently have relocated up to the Redmond area from Southern California after I

# MSDN Blog Postings &raquo; My New Blog

Saturday, December 08, 2007 4:48 AM by MSDN Blog Postings » My New Blog

Pingback from  MSDN Blog Postings  &raquo; My New Blog

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

Saturday, December 08, 2007 10:07 AM by Tim

Hi Scott,

I can't get any VS2008 asp.net apps to work with iis5.1 on XP Pro SP2.

I have a standard setup of .net 3.5 etc.

Is there anything to tweak?

Thanks,

Tim

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

Sunday, December 09, 2007 11:48 PM by Veeral Patel

G'day

Fantastic news on silverlight. Just one question will 2.0 have any out of the box support for XPS ? Since XPS is one of the many components of WPF, it would be good if silverlight could support this natively rather than building a custom parser to allow XPS to be displayed within silverlight.

cheers

Veeral

# ASP.NET 3.5 Extensions CTP Preview Released

Sunday, December 09, 2007 11:55 PM by ScottGu's Blog

Earlier today we released the first CTP preview of an &quot;ASP.NET 3.5 Extensions&quot; release that

# Community Convergence XXXVII

Monday, December 10, 2007 3:24 AM by Charlie Calvert's Community Blog

Welcome to the thirty-seventh edition of Community Convergence. Visual Studio 2008 has been released

# RoadMap : Asp.Net 3.5

Monday, December 10, 2007 4:13 AM by BlogTech

RoadMap : Asp.Net 3.5

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

Monday, December 10, 2007 4:24 AM by NeilAlderson

Hi Scott,

I wonder if you could tell me if the Silverlight 2.0 Beta + tools release in Q1 2008 will support the Express editions of VS2008 or will I have to wait until a later release?

I also wonder if the current Silverlight 1.1 Alpha release can be used in Express WITHOUT the templates available for other versions of VS2008. I mean is it possible to create XAML code behind files by hand just by including the correct dll's and inheriting from Canvas (this seems to be all that the templates do automatically for you) or am I missing something else?

Cheers for the great blog and keeping us informed!

# MSDN Blog Postings &raquo; Community Convergence XXXVII

Monday, December 10, 2007 5:01 AM by MSDN Blog Postings » Community Convergence XXXVII

Pingback from  MSDN Blog Postings  &raquo; Community Convergence XXXVII

# ASP.NET 3.5 Extensions CTP Preview Released

Monday, December 10, 2007 4:10 PM by Tim-Stanley.com

ASP.NET 3.5 Extensions CTP Preview Released

# [PL] Kilka ważnych słów oznaczonych numerkami: Silverlight 2.0, Internet Explorer 8?

Monday, December 10, 2007 4:19 PM by Only Human | Devoted to technology v.2.0

Ha.. my to umiemy mieszać nazwami, numerami wersji. Oczywiście wymieniona w tytule wersja to nie następca

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

Monday, December 10, 2007 9:03 PM by Contagious Curiosity

Believe it or not, we actually try to avoid confusing our customers. Scott's blog entry is great reading

# MSDN Blog Postings &raquo; .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7)

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

# Silverlight 1.1 ahora Silverlight 2.0

Tuesday, December 11, 2007 2:01 AM by Ricardo La Rosa [MSP-Trujillo]

Debido a grandes cambios desde la versi&#243;n 1.0, la nueva versi&#243;n de Silverlight, antes conocida

# Silverlight 1.1 ahora Silverlight 2.0

Tuesday, December 11, 2007 2:07 AM by Ricardo La Rosa

Debido a grandes cambios desde la versión 1.0, la nueva versión de Silverlight, antes conocida como Silverlight

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

Tuesday, December 11, 2007 2:41 AM by Ειδήσεις του dotNETZone.gr

Μετά την επίσημη κυκλοφορία του VS2008 και του .Net 3.5 ο Scott Guthrie σε πρόσφατο post "χαράζει το

# Silverlight 2.0, Sprawl, and a Dash of Snoop!

Tuesday, December 11, 2007 3:55 PM by Expression Blend and Design

Last week, the plans for Silverlight 2.0 were announced with a number of features that can be expected

# ASP.NET 3.5 Extensions CTP Preview Released &laquo; .NET Framework tips

Pingback from  ASP.NET 3.5 Extensions CTP Preview Released &laquo; .NET Framework tips

# My first experience with Silverlight 1.1 &laquo; Josh Smith on WPF

Thursday, December 13, 2007 12:05 AM by My first experience with Silverlight 1.1 « Josh Smith on WPF

Pingback from  My first experience with Silverlight 1.1 &laquo; Josh Smith on WPF

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

Thursday, December 13, 2007 3:46 AM by Mokond - mokond@o2.pl

What's about the reuse of the WPF's code?

What changdes need to be done to make it Silverlight code?

Thanks

Jack

# Vem ai o Silverlight 2.0 - Prepare-se para 2008 ...

Thursday, December 13, 2007 12:04 PM by Ramon Durães

Silverlight 2.0 Essa semana tivemos um dos anúncios mais importantes desde as primeiras versões do WPF

# Silverlight 1.1正式更名为Silverlight 2.0

Friday, December 14, 2007 5:50 AM by techweb

详情请参看下面两篇Blog:weblogs.asp.net/.../silverlight-1-1-is-now-silverlight-2-0.aspxTrackback: tb.blog.csdn.net/TrackBack

# Silverlight 1.1正式更名为Silverlight 2.0

Sunday, December 16, 2007 9:19 PM by csdnexpert

详情请参看下面两篇Blog:weblogs.asp.net/.../net-web-product-roadmap-asp-net-silv...

# Fréquence MSDN, Episode 3

Monday, December 17, 2007 7:01 PM by Christophe Lauer, Blog Edition

Ce matin a eu lieu le troisième épisode de l'émission "Fréquence MSDN" animée par quelques Microsoftees

# Geek Lectures - Things geeks should know about &raquo; Blog Archive &raquo; Fr??quence MSDN, Episode 3

Pingback from  Geek Lectures - Things geeks should know about &raquo; Blog Archive   &raquo;  Fr??quence MSDN, Episode 3

# Cossacks Breaking News &raquo; Microsoft puts spotlight on Silverlight

Pingback from  Cossacks Breaking News &raquo; Microsoft puts spotlight on Silverlight

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

Tuesday, December 18, 2007 6:13 AM by koger

Is Silverlight 2 going to support WCF or parts of it?

# Silverlight FAQ

Tuesday, December 18, 2007 5:22 PM by Erik Reitan's ASP.NET WebLog

What is Silverlight? Silverlight is a new Web presentation technology that is created to run on a variety

# MSDN Blog Postings &raquo; Silverlight FAQ

Tuesday, December 18, 2007 5:29 PM by MSDN Blog Postings » Silverlight FAQ

Pingback from  MSDN Blog Postings  &raquo; Silverlight FAQ

# Silverlight FAQ

Tuesday, December 18, 2007 5:56 PM by Noticias externas

What is Silverlight? Silverlight is a new Web presentation technology that is created to run on a variety

# Silverlight 2.0 y extensiones de ASP.NET 3.5 | Dise??o Web, Programaci??n web, Seo, Marketing, Web 2.0

Pingback from  Silverlight 2.0 y extensiones de ASP.NET 3.5 | Dise??o Web, Programaci??n web, Seo, Marketing, Web 2.0

# ASP.NET 3.5 Extensions CTP Preview Released

Wednesday, December 19, 2007 10:24 AM by nibblers revenge

ASP.NET 3.5 Extensions CTP Preview Released

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

Thursday, December 20, 2007 3:44 AM by ScottGu

Hi Koger,

>>>>>> Is Silverlight 2 going to support WCF or parts of it?

Yes - Silverlight 2.0 will include a WCF API.

Thanks,

Scott

# Interesting Finds: 2007.11.30

Thursday, December 20, 2007 8:32 AM by gOODiDEA

.NET: .NETWebProductRoadmap(ASP.NET,Silverlight,IIS7) Javascript: NewCSSJ...

# Looking for the .Net Web Technology Roadmap?

Thursday, December 20, 2007 5:32 PM by Blog.Sean.McLaren
 

Scott Guthrie has posted a very good look at what is to come... weblogs.asp.net/.../net-web-product-roadmap-asp-net-silverlight-iis7.asp

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

Thursday, December 20, 2007 6:04 PM by Nick

This is all fantastic news! This post right here and all the stuff it talks about, that is my Christmas gift from Microsoft.

# Microsoft Silverlight 2.0 Wish List

Friday, December 21, 2007 8:42 AM by Michael's Blog

Well, the year 2007 is nearly at the end and I have my short wish list for Microsoft Silverlight . The

# В ожидании Silverlight 2.0

Monday, December 24, 2007 3:36 AM by Блог Андрея Скляревского

В среде разработчиков сейчас образовалась некоторая туманность относительно Silv

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

Friday, December 28, 2007 1:12 PM by Yasir Atabani

This is a great news to hear, i'm looking forward to start using Silverlight

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

Monday, December 31, 2007 4:09 PM by Dave

Silverlight 2.0 is gonna be wicked the badazz!

# 微软将Silverlight 1.1更名为Silverlight 2.0,并公布其特性

Tuesday, January 01, 2008 10:28 PM by BladeMaster

微软已经决定将正准备发布的Silverlight 1.1更名为Silverlight 2.0,并将在2008年一季度发布的Beta版中启用Go-Live许可。界时,开发人员可以马上利用Silverlight 2.0开始创建真实应用程序了。

# SiNi Daily &raquo; Blog Archive &raquo; Silverlight 1.^H^H2.0: Controls are here

Pingback from  SiNi Daily  &raquo; Blog Archive   &raquo; Silverlight 1.^H^H2.0: Controls are here

# Quick Notes on Silverlight

Wednesday, January 02, 2008 1:58 PM by Into The Deep

I have been concerned about the limited user input capability in Silverlight 1.0. Fortunately, Scott Guthrie's article regarding Silverlight roadmap clears up a few things. Silverlight 2.0 plans to support features of the WPF UI framework with rich con

# MSDN Blog Postings &raquo; Roadmap for .NET Web Products (ASP.NET, Silverlight, and IIS7)

Pingback from  MSDN Blog Postings  &raquo; Roadmap for .NET Web Products (ASP.NET, Silverlight, and IIS7)

# Why I stopped my Silverlight 1.1 Work

Thursday, January 03, 2008 5:55 PM by POKE 53280,0: Pete Brown's Blog

You may have noticed that I stopped putting Silverlight 1.1 code out on my blog and stopped talking about

# "Silverlight - Learn": rinnovata la sezione di learning: nuovi video e tutorial.

Friday, January 04, 2008 11:37 AM by Discussion about design and user experience

Con piacere vi segnalo la disponibilità di nuovi contenuti e tutorial all’interno della sezione “Learn”

# Web 2.0 .NET vs. LAMP Part 2: Development Costs

Monday, January 07, 2008 2:34 PM by Web 2.0 .NET vs. LAMP Part 2: Development Costs

Pingback from  Web 2.0 .NET vs. LAMP Part 2: Development Costs

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

Tuesday, January 08, 2008 3:08 PM by Alex

Hi there!

I've observed Silverlight since 1.0 and I have to admit at the moment it uses almost all CPU power on average samples while the production isn't fast at all. It's a great technology though, but is there any solution or plan to speed up the whole framework?

p.s. Performance and sockets are real obstacles for my company to create brand new software :)))

# Silverlight 2.0

Wednesday, January 09, 2008 6:26 PM by Community Blogs

This is some big news via Microsoft Web Biggy Chieffy Silverlight 1.1 becomes Silverlight 2.0 (yay, very

# &raquo; Silverlight 2.0 release date looking like August | The Universal Desktop | ZDNet.com

Pingback from  &raquo; Silverlight 2.0 release date looking like August | The Universal Desktop | ZDNet.com

# Silverlight 2.0 in August? | Silverlight Guide

Tuesday, January 15, 2008 7:13 AM by Silverlight 2.0 in August? | Silverlight Guide

Pingback from  Silverlight 2.0 in August? | Silverlight Guide

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

Wednesday, January 16, 2008 11:19 AM by ajk-eis

Hi Scott,

sorry for misusing this post abit, but we are having a big problem with IIS 7 and ASP NET 20 validation controls and I didn't find a better place for it.

It would seem that there is no way to have a web project that contains validation controls unless the app pool is run in classic .net compatability mode.

That seems strange, since the validation controls are still up to date in VS 2008. It would seem no one has an answer to this.

See ASP.NET thread forums.asp.net/.../1155043.aspx

I would appreciate any help you can give us. It's kind of hard to sell IIS 7 (W2K8 Server) when several normal ASP 2.0 sites won't run without "hacks".

# Silverlight 2.0

Wednesday, January 16, 2008 9:55 PM by WOW the Web

Silverlight 2.0 将会在今年的 3 月初发布最新的 Beta 版本,这个版本将会是一个有部分授权的版本,你可以把这个版本用在你的生产测试环境里。 Silverlight 新增的 Feature

# People Over Process &raquo; links for 2008-01-18

Friday, January 18, 2008 2:21 AM by People Over Process » links for 2008-01-18

Pingback from  People Over Process &raquo; links for 2008-01-18

# ASP.NET 3.5 Extensions CTP Preview Released

Friday, January 18, 2008 9:10 PM by Tim-Stanley.com

ASP.NET 3.5 Extensions CTP Preview Released

# The Man Who Knew Too Much?

Sunday, January 20, 2008 4:29 AM by Jon Galloway

I've been thinking about the odd problem, and what can be done about it. I've found that more active

# Welcome to the Web Deployment Team blog

Wednesday, January 23, 2008 2:01 PM by Microsoft Web Deployment Team Blog

Welcome to the Microsoft Web Deployment Team blog - we hope you will find this a helpful place to get

# Silverlight 2.0... Pas aux TechDays

Friday, January 25, 2008 9:00 AM by Christophe Lauer, Blog Edition

Chers amis développeurs, et amies développeuses :) Avec ce billet, je voudrais vous expliquer pourquoi

# Silverlight 2.0... Pas aux TechDays

Friday, January 25, 2008 10:02 AM by Noticias externas

Chers amis développeurs, et amies développeuses :) Avec ce billet, je voudrais vous expliquer pourquoi

# MSDN Blog Postings &raquo; Silverlight 2.0... Pas aux TechDays

Friday, January 25, 2008 10:22 AM by MSDN Blog Postings » Silverlight 2.0... Pas aux TechDays

Pingback from  MSDN Blog Postings  &raquo; Silverlight 2.0... Pas aux TechDays

# MSDN Blog Postings &raquo; Microsoft Web Deployment Tool - Technical Preview 1 available for download

Pingback from  MSDN Blog Postings  &raquo; Microsoft Web Deployment Tool - Technical Preview 1 available for download

# Links from Tonight's Silverlight for Developers Talk in Reston

Wednesday, January 30, 2008 11:15 PM by POKE 53280,0: Pete Brown's Blog

During the Q&amp;A in Reston, Marc and I mentioned a few places of interest. The Silverlight Deployment

# A Ton of News on the ASP.NET and Silverlight Fronts

Saturday, February 02, 2008 11:56 PM by SlickThought.Net

A Ton of News on the ASP.NET and Silverlight Fronts

# Tip of the Day - Getting Ready for Silverlight 2

Friday, February 08, 2008 2:33 PM by Jesse Liberty - Silverlight Geek

We have announced that Silverlight 2 Beta 1, will be released during the first 3 months of this year

# Tip of the Day - Getting Ready for Silverlight 2

Friday, February 08, 2008 2:41 PM by Jesse Liberty

We have announced that Silverlight 2 Beta 1, will be released during the first 3 months of this year

# 1.1 e prea putin, hai sa-i spunem Silverlight 2.0

Sunday, February 10, 2008 3:12 AM by Weblogul lui Zoli

Scott ne explica pe larg ca avand in vedere cate se baga in versiunea urmatoare de Silverlight, ar trebui

# Tip of the Day: How To Answer: Will This Work In Silverlight 2.0?

Thursday, February 14, 2008 9:20 AM by Jesse Liberty - Silverlight Geek

I&#39;m beginning to receive a lot of email about what is coming in Silverlight 2.0. Today&#39;s was

# Tip of the Day: How To Answer: Will This Work In Silverlight 2.0?

Thursday, February 14, 2008 10:11 AM by Blogs

I&#39;m beginning to receive a lot of email about what is coming in Silverlight 2.0. Today&#39;s was

# .NET 3.5 Client Product Roadmap

Tuesday, February 19, 2008 2:57 PM by ScottGu's Blog

A few months ago I did a .NET Web Product Roadmap blog post where I outlined some of the product plans

# .NET 3.5 Client Product Roadmap

Tuesday, February 19, 2008 8:33 PM by Bink.nu

A few months ago I did a .NET Web Product Roadmap blog post where I outlined some of the product plans

# NET 3.5 Resoconto prodotti Client.

Wednesday, February 20, 2008 9:00 AM by Scott Guthrie Italian WebLog

NET 3.5 Resoconto prodotti Client.

# .NET 3.5 Client Product Roadmap &laquo; .NET Framework tips

Thursday, February 21, 2008 10:43 PM by .NET 3.5 Client Product Roadmap « .NET Framework tips

Pingback from  .NET 3.5 Client Product Roadmap &laquo; .NET Framework tips

# Support for Core Form Controls in Silverlight 2.0

Saturday, February 23, 2008 8:19 AM by Johan Danforth's Blog

Happy to see this announcement on ScottGu's webby: The next Silverlight preview release will add support

# Adobe AIR Vs Microsoft Silverlight &laquo; Tales from a Trading Desk

Pingback from  Adobe AIR Vs Microsoft Silverlight &laquo; Tales from a Trading Desk

# Silverlight information and some cool videos around it

Thursday, April 03, 2008 12:06 PM by ASP.NET Debugging

So there has been a lot of information released around Silverlight and the new version which works with

# .NET 3.5 Product Roadmap &laquo; Tech Jottings

Monday, April 14, 2008 10:19 AM by .NET 3.5 Product Roadmap « Tech Jottings

Pingback from  .NET 3.5 Product Roadmap &laquo; Tech Jottings

# checkbox in a grid asp net

Thursday, June 19, 2008 6:06 PM by checkbox in a grid asp net

Pingback from  checkbox in a grid asp net

# Why I stopped my Silverlight 1.1 Work

Saturday, June 28, 2008 11:51 PM by DEVELOPMENT SITE - NOT MY PUBLIC BLOG

You may have noticed that I stopped putting Silverlight 1.1 code out on my blog and stopped talking about 1.1 at local events. I even keynoted the Silverlight FireStarter back in December and barely mentioned 1.1 in the process (I think it rated one slide

# Silverlight 2.0 y extensiones de ASP.NET 3.5&nbsp;|&nbsp;Dise??o Web, Programaci??n web, Seo, Marketing, Web 2.0

Pingback from  Silverlight 2.0 y extensiones de ASP.NET 3.5&nbsp;|&nbsp;Dise??o Web, Programaci??n web, Seo, Marketing, Web 2.0

# DeveloperZen &raquo; Blog Archive &raquo; .NET Web Products Roadmap (ASP.NET, Silverlight, IIS7)

Pingback from  DeveloperZen  &raquo; Blog Archive   &raquo; .NET Web Products Roadmap (ASP.NET, Silverlight, IIS7)

# Silverlight 2.0 y extensiones de ASP.NET 3.5 | Oscar Martin Blog 2.0

Pingback from  Silverlight 2.0 y extensiones de ASP.NET 3.5 | Oscar Martin Blog 2.0

# Silverlight 2.0 &laquo; aji dot net

Sunday, August 10, 2008 1:41 PM by Silverlight 2.0 « aji dot net

Pingback from  Silverlight 2.0 &laquo; aji dot net

# Welcome to the Web Deployment Team blog

Monday, October 27, 2008 10:35 AM by Welcome to the Web Deployment Team blog

Pingback from  Welcome to the Web Deployment Team blog

# .NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) - ScottGu's Blog

Thursday, December 18, 2008 10:22 PM by Jocelyn

Scott Gu&#39;s post on Silverlight 1.1 being rebranded to Silverlight 2.0 (and the features expected

# &nbsp; Silverlight 1.1 Changed to Silverlight 2.0&nbsp;by&nbsp;Adrian Roman

Pingback from  &nbsp; Silverlight 1.1 Changed to Silverlight 2.0&nbsp;by&nbsp;Adrian Roman