Viewing entries tagged
ASP.NET

1 Comment

RE: Microsoft ASP.NET - Too many options

Repsonding to Peter Gfader’s blog post about Microsoft ASP.NET - Too many options

I see WebMatrix as an entry level tool to get people who don’t necessary have a development background a quick way to build and customize websites (using the templates and editors) on the Microsoft platform. It lowers the barriers to entry because you have one lightweight tool (7MB + about 20 MB of dependencies) that can edit web pages and manage your SQL. If the user wants to do more than they will need to step up to the visual studio offerings like if they wanted debugging support. I think of it as a step up from Notepad :)

Not sure whether the express editions of Visual Studio were downloaded and used much as the site is a bit confusing with sightly too many product skus, and maybe this is why they made Web Matrix – to drive adoption of Microsoft Web technology for users who don’t want to pay.

Too many “Express” offerings http://www.microsoft.com/express/Downloads/

  • Visual Basic 2010 Express
  • Visual C# 2010 Express
  • Visual C++ 2010 Express
  • Visual Web Developer 2010 Express
  • All - Offline Install ISO image file
  • Windows Phone Developer Tools
  • Microsoft Captions Language Interface Pack

Peter is right in that Microsoft tends to suffer from too many offerings (e.g. LINQ 2 SQL & EF, Microsoft Dynamics CRM/Great Plains/Axapta/Navision/SL) and a consolidation of the tools would make sense.

Too much choice is actually bad and can be mentally exhausting 

1 Comment

46 Comments

Reserved.ReportViewerWebControl.axd not found

Ran into this issue the other day at work. We were developing some reporting services reports for a client and viewing them through a report viewer control in the intranet site we were developing.

The reports ran fine in the development environment but as soon as it was published to testing the reports behaved strangely. The test box was a Windows 2008 Server Standard Edition with IIS installed and .NET 3.5 SP1.

The reports page was reporting a 404 on the following resource “Reserved.ReportViewerWebControl.axd”

46 Comments

Comment

Weekly Training - Working with large sets of data in ASP.NET

This weeks lunchtime training at SSW was about dealing with large (over 50,000 records) in ASP.NET. It was also my first screencast, so be sure to check out the video.

The Databound Drop Down List

I covered the disadvantages of trying to display a list of clients in a drop down list. The rendered page for 50,000 records

The drop down list:

  • Rendered out a 5MB page
  • Took 17 minutes to load on a dialup account

Comment