Fabrice's weblog
Tools and Source
-
Holophony
Put your headphones on and listen to this mp3...
I haven't tried but apparently it also works with stereo speakers (not surround ones though). -
Are you GSCP certified?
These days a new programming paradigm is gaining momentum: GSCP.
In fact, a lot of us already practice it even without knowing it. What does GSCP mean, will you ask... Simply Google Search, Copy/Paste! -
Windows Live is revolutionary, or so claims Microsoft at least
I've never used Windows Live and I don't think I need it, but it seems fabulous.
Just look at its latest feature: -
URL rewriting breaks ASP.NET 2's themes
If you try to use URL rewriting and ASP.NET 2 themes at the same time, you will likely get broken pages, because the two don't mix very well.
A typical link to a theme's stylesheet looks like this in the generated HTML:
<link href="App_Themes/Theme1/StyleSheet.css" type="text/css" rel="stylesheet" />
The problem is that these links to CSS documents are using relative paths, which is not going to work fine if you use RewritePath on your web requests. -
ASP.NET 2 weblogs
I'm back to working on web applications and this time it is with ASP.NET 2 of course.
To help you get started with the new ASP.NET version, here are some great weblogs you don't want to miss:
- Scott Guthrie's weblog
- Nikhil Kothari's weblog
- Bertrand Le Roy's Atlas stuff
- K. Scott Allen's weblog
- Rick Strahl's weblog
- Fredrik Normén's weblog
I probably missed some, but this is a good start. Any suggestion?
-
PageMethods for VS 2005 updated to version 1.5.1
PageMethods for VS 2005 has been updated with various fixes and improvements. Note that an FAQ is now available.
Please update your version. Please uninstall the previous version first.
Details about the updates since the official release:
- version 1.5.1.0 (bug fixes and improvements)
- It is now possible to activate and deactivate the PageMethods add-in directly from projects' properties, without having to proceed through the Web.config file.
- PageMethod's strong-named assembly can now be called in shared web hosting environments (details).
- version 1.5.0.2 (bug fixes)
- PageMethods was not handling correctly projects under IIS.
- version 1.5.0.1 (bug fixes)
- Take into account the additional namespace added in Web.config when using the ASP.NET Configuration tool, as described here.
- Added some code to keep Intellisense (code completion) more in sync with your modifications.
- Added some code to avoid problems with some kinds of projects (like SQL Server Reporting Services projects).
- version 1.5.1.0 (bug fixes and improvements)
-
VS 2005 Web Application Project Model now available as a preview
The new Web Project Option for Visual Studio 2005 is now available as an alpha version. Its new name is the "Visual Studio 2005 Web Application Project Model". You can get all the details on Scott Guthrie's weblog and on the dedicated web site.
-
Allow strong-named assemblies to be called in shared web hosting environments
One workaround is to set <trust level="full" /> in the web.config file (within system.web element) - although I suspect hosts shouldn't allow this to work.
-
Reminder: win with SharpToolbox' newsletter
Quick reminder: you can win a SmartInspect Professional license if you subscribe to SharpToolbox' newsletter. As a subscriber to this newsletter you automatically participate to our raffle.
We already have two winners. The next one will be drawn soon. Don't miss your chance and subscribe now at http://SharpToolbox.com -
New old web project model option for VS 2005
A new -old- web project model option is coming for VS 2005
The ASP.NET team takes a look back at VS 2003's model for web projects and adds an option to Visual Studio 2005 to use the same kind of model. This has been requested by several users when the new model (no project file, multiple assemblies, App_Code folder, etc.) was introduced.
It looks like this new option can be the best of both worlds, as it still lets you take advantage of the new VS 2005 WYSIWYG designer changes (no more html reformatting, master page/theme designer support, etc), as well as all the improvements made in the html source editor, and it lets you use VS 2005's built-in web server and MSBuild.
See also the new Visual Studio 2005 Web Deployment Projects
Congratulations to the ASP.NET team for its newly gained agility!
Update: this new model is available as a preview.