Showing archive results for 2010

Apr 15, 2010
Post comments count0
Post likes count0

Controls State: “Error Creating Control” in the Design View in Visual Studio 2010

Web Development Tools Microsoft
Web Development Tools Microsoft

In VS 2010, if you are accessing the Session state in the OnInit(…) method of your page, similar to the following code snippet: then you will encounter an “Error Creating Control” for ASP.NET controls when viewing the Design view of the page. For example, if you have an ASP.NET button control on the page, the designer will display the error: ...

ASP.NET
Apr 15, 2010
Post comments count0
Post likes count0

Issues between Visual Studio, Microsoft Wireless Laser Mouse and Windows 2008 Server

Web Development Tools Microsoft
Web Development Tools Microsoft

Quite some time ago, when Vista just went RTM, Risk Strahl discovered that when he used Microsoft Wireless Laser Mouse, code intellisense and markup validation in Visual Studio stopped working. Since several activities in VS are done in a background on idle (not to be confused with background threads - idle processing is performed on the main ...

ASP.NET
Apr 15, 2010
Post comments count0
Post likes count0

Silverlight 4 Tools Released

Web Development Tools Microsoft
Web Development Tools Microsoft

This morning we released Silverlight 4 Tools for Visual Studio 2010!The link to download and installs the tools is http://go.microsoft.com/fwlink/?LinkId=177508.  The tools will install: Note that this is the RC release of the Silverlight 4 tools. With these tools you can start developing Silverlight 4 applications using Vis...

ASP.NET
Apr 15, 2010
Post comments count0
Post likes count0

ParallelExtensionsExtras Tour – #11 – ParallelDynamicInvoke

Stephen Toub - MSFT
Stephen Toub - MSFT

(The full set of ParallelExtensionsExtras Tour posts is available here.)  Delegates in .NET may have one or more methods in their invocation list.  When you invoke a delegate, such as through the Delegate.DynamicInvoke method, the net result is that all of the methods in the invocation list get invoked, one after the other.  Of...

.NET Parallel Programming
Apr 14, 2010
Post comments count0
Post likes count0

Visual Studio 2010 Web Deployment Projects Beta – Available Now

Web Development Tools Microsoft
Web Development Tools Microsoft

If you’ve been using Web Deployment Projects in Visual Studio 2008 or 2005, you can upgrade to VS 2010 without hesitation now with the availability of Visual Studio 2010 Web Deployment Projects Beta (for Visual Studio Professional and higher skus). The power tool named “Web Deployment Projects” originally shipped as an out-of-ban...

ASP.NET
Apr 14, 2010
Post comments count0
Post likes count0

ParallelExtensionsExtras Tour – #10 – Pipeline

Stephen Toub - MSFT
Stephen Toub - MSFT

(The full set of ParallelExtensionsExtras Tour posts is available here.)  Producer/consumer is a fundamental pattern employed in many parallel applications.  With producer/consumer, one or more producer threads generate data that is consumed by one or more consumer threads.  These consumers can themselves also be producers of f...

.NET Parallel Programming
Apr 13, 2010
Post comments count0
Post likes count0

ThreadPool performance you can see

Stephen Toub - MSFT
Stephen Toub - MSFT

We've spent a lot of time touting improvements to the .NET Framework in .NET 4 around threading, including core enhancements to the performance of the runtime itself.  Sometimes data is more powerful than words, however, and it's useful to be able to see exactly what kind of difference such improvements can make.  To assist with that, her...

.NET Parallel Programming
Apr 13, 2010
Post comments count0
Post likes count0

Connect

CLR Team
CLR Team

As hopefully most of you know, Microsoft has a site called Connect where customers can log bugs and suggestions (http://connect.microsoft.com/).  Issues for .NET can be found in the Visual Studio and .NET Framework feedback category (http://connect.microsoft.com/VisualStudio/Feedback) and can be logged from the main Visual Studio Connect page ...

.NET
Apr 13, 2010
Post comments count0
Post likes count0

Visual Studio 2010 MVC 2 Upgrade Wizard

Web Development Tools Microsoft
Web Development Tools Microsoft

Prior to the RTM release of Visual Studio 2010, the only way to upgrade an ASP.Net MVC 1 application to ASP.Net MVC 2 was to use Eilon Lipton’s tool. With the release of Visual Studio 2010 you will now be able to open your MVC 1 projects in Visual Studio 2010 and upgrade them to ASP.Net MVC 2 projects. Also, you can upgrade the target framework of ...

ASP.NET
Apr 13, 2010
Post comments count0
Post likes count0

ParallelExtensionsExtras Tour – #9 – ObjectPool

Stephen Toub - MSFT
Stephen Toub - MSFT

(The full set of ParallelExtensionsExtras Tour posts is available here.) An object pool is a mechanism/pattern to avoid the repeated creation and destruction of objects.  When code is done with an object, rather than allowing it to be garbage collected (and finalized if it’s finalizable), you put the object back into a spe...

.NET Parallel Programming