Latest Microsoft Blogs

Posted to:
Latest Microsoft Blogs
by: ScottGu's Blog
10-02-2008, 4:23 AM

October 2nd Links: ASP.NET, ASP.NET MVC, ASP.NET Dynamic Data

Here is the latest in my link-listing series .  Also check out my ASP.NET Tips, Tricks and Tutorials page and Silverlight Tutorials page for links to popular articles I've done myself in the past. ASP.NET Amazon EC2 Support for Windows and ASP.NET: Big news announced this week: Amazon will be offering Windows Server 2008 as an option in their EC2 service.  This enables you to use ASP.NET, IIS7 and SQL Server in the cloud. Using ASP.NET WebForms, MVC and Dynamic Data in a Single Application : Scott Hanselman has a nice post that demonstrates how you can have a single ASP.NET application that uses ASP.NET WebForms, MVC, WebServices and Dynamic Data.  You have the flexibility to mix and match them however you want, which allows...
Filed under: , , ,
Posted to:
Latest Microsoft Blogs
by: Scott Hanselman's Computer Zen - ASP.NET
10-01-2008, 5:53 PM

Plug-In Hybrids: ASP.NET WebForms and ASP.MVC and ASP.NET Dynamic Data Side By Side

I wanted to write this post because there seems to be a lot of confusion about how ASP.NET WebForms, MVC and Dynamic Data all fit together. Folks may have WebForms applications and want to start looking at ASP.NET MVC but aren't sure if they need to start from scratch or not. Folks might look at Dynamic Data but mistakenly assume it's just for scaffolding administrative sites. When you're in Visual Studio and you hit "File | New Project" you're given a number of choices. This is a starting point, but it easy to assume that this point is a fork in the road and you can mix them up. You can (and should) feel free to have Hybrid applications. You can have single Web applications that have all of these inside them (if it...
Posted to:
Latest Microsoft Blogs
by: If broken it is, fix it you should : ASP.NET
10-01-2008, 11:01 AM

Using VSTS Test and Profilers to troubleshoot performance issues (low cpu hang)

I’ve been wanting to dig into the Test features in Visual Studio Team System for a while to “debug” issues during the test phase.  In my previous post I linked to a Swedish screen cast by Mikael Deurell, but for those of you who don’t know Swedish I thought I’d walk through troubleshooting a couple of my labs using the Visual Studio Team System Profiler and Load Tests.  Problem description The issue we will troubleshoot comes from lab 1 in my BuggyBits lab set, and the scenario here is that we see that the execution times for the page FeaturedProducts.aspx keep increasing, and under load the page even times out. Those of you who have walked through the labs will of course know what the underlying issue and resolution is, so please...
Posted to:
Latest Microsoft Blogs
by: you've been HAACKED
09-30-2008, 10:55 PM

JQuery and ASP.NET MVC

Where have I been? ;) You probably heard the news already form the GU already, but just in case, we will be shipping JQuery with Visual Studio . ASP.NET MVC will have the privilege of being one of the first products to include JQuery. I am glad we finally announced this because I got tired of stifling my mouth everytime someone suggested we just include JQuery. :) As you can see from demos I've done in the past , JQuery will fit nicely with the ASP.NET MVC style of development. Read More...
Posted to:
Latest Microsoft Blogs
by: you've been HAACKED
09-30-2008, 10:44 PM

Currently in Japan with No Consistent Internet Access

The internet access I had at my mother-in-law's last time I was in Japan turned out to be a fluke. I am at a Japanese Manga and Internet cafe (because those three things go so well together) right now typing this out. I've received a lot of comments and questions via my blog and once I get to Hong Kong, I will do my best to answer. No promises though as I hear that the pool at the hotel is nice and I do have three talks to prepare. I must admit that not having daily internet access is probably a good thing for me as I'm a total online junkie. :) The next time we visit, I need to remember to bring more reading material. I brought two books on Poker and am tired of reading about it. ;) Read More...
Filed under:
Posted to:
Latest Microsoft Blogs
by: If broken it is, fix it you should : ASP.NET
09-30-2008, 7:12 AM

Swedish Screen casts of debugging labs and visual studio test

I know that perhaps not that many of you know Swedish, but for those of you who do, you might want to check out Michael Deurell’s nice screen casts about how to use visual studio test system to troubleshoot the issues in the buggybits labs along with some windbg fun…  His screen casts are called “Fräschast i Bandhagen”, just love that name (unfortunately doesn’t translate that well to English:)) http://blogs.msdn.com/deurell/archive/2008/09/30/debugga-i-produktion-eller-testa-bort-i-utveckligsfas.aspx Laters, Tess Read More...
Posted to:
Latest Microsoft Blogs
by: Visual Web Developer Team Blog
09-29-2008, 6:35 PM

A simple Balloon shooting silverlight game.

The following is a step by step walkthrough of designing a simple Balloon shooting silverlight game. Hope you enjoy it. Siverlight 2 Beta 2 Balloon shooting tutorial Part 1/4, Design Siverlight 2 Beta 2 Balloon shooting tutorial Part 2/4, Create Silverlight project, add balloon user control Siverlight 2 Beta 2 Balloon shooting tutorial Part 3/4, add BalloonAction.cs Siverlight 2 Beta 2 Balloon shooting tutorial Part 4/4, modify the main control Page.xaml Xinyang Qiu SDET II Visual Studio Web Tools Read More...
Posted to:
Latest Microsoft Blogs
by: Visual Web Developer Team Blog
09-29-2008, 6:30 PM

How to reference an ADO.Net Data service from VS2008 SP1

The following link is how to reference an ADO.Net Data Service Service referencing ADO.Net Data Service Xinyang Qiu SDET II Visual Studio Web Tools Read More...
Posted to:
Latest Microsoft Blogs
by: Brad Abrams
09-29-2008, 11:21 AM

Simple Introduction to Extensible Applications with the Managed Extensions Framework

Recently my team has been working on the Managed Extensions Framework (MEF)... I have gotten a chance to explain the concept to folks and I think I have discovered a way to talk about MEF that folks can easily get. So I thought I'd spend a little time walking through a *very* simple MEF example as a way to introduce folks to the power of extensible applications in general, and MEF in particular. BTW, you can download the current MEF CTP and the final working sample . Background Let's start with the most simple example: Hello World! 1: using System; 2: 3: class Program 4: { 5: public void Run() 6: { 7: Console.WriteLine( "Hello World!" ); 8: Console.ReadKey(); 9: } 10: static void Main( string [] args) 11: { 12: Program p =...
Filed under: ,
Posted to:
Latest Microsoft Blogs
by: Tales from the Evil Empire : ASP.NET
09-29-2008, 12:23 AM

jQuery now officially part of the .NET developer’s toolbox

You may have read that from John Resig or Scott Guthrie . I’m very excited to announce that Microsoft has decided to ship, adopt and support using jQuery on top of ASP.NET. This may come as a surprise to some of you but I hope you’ll agree with me that it makes total sense. jQuery is a fantastic JavaScript library that focuses on DOM querying and manipulation, whereas the Microsoft Ajax Library focuses on building reusable components and interacting with ASP.NET web services. A lot has been written already on this new partnership so I’ll just go ahead and show some code that hopefully will show how great jQuery and ASP.NET AJAX work together. As my first piece of code using both frameworks, I’ve built a very simple plug-in for jQuery that instantiates...

1 2 3 4 5 Next > ... Last »


Microsoft Communities