Archive

Archive for August, 2007

FatMixx » Television Commercial Music

August 24, 2007 3 comments

 FatMixx is an awesome site to find those cool TV commercial music. I was looking for the cool music that was played during the Verizon LG Chocolate ad. I hate the phone but the song Strict Machine by Goldfrapp is awesome. One more.. the new dell ad music The W.A.N.D by Flaming Lips

Categories: Uncategorized

Prevent child web application to inherit web.config settings from root web application

August 12, 2007 Leave a comment

To prevent child web application to inherit settings from root web application, use the nifty inheritInChildApplication  attribute (new with 2.0) in your location section.  It’s a shame that this important property (or articles related to this) are not mentioned in the msdn help for <location> element.

more on this property:

J Ambrose Little

Brendan Kowitz’s .NET Blog

To quote Brendan..

"Most collections in the web.config have the <remove> tag or <clear> tag to remove irrelevant modules or handlers in the child app.  The problems I’ve found occur with settings relating to the <pages> tag, which most items in it don’t support <remove>. This means if your child applications doesn’t share or have the same registered controls, masterpages or themes then you are probably going to have issues or be forced to specify the settings on a per-page basis.  This is where the inheritInChildApplications="false" really comes in handy"

I have used this to isolate certain appSettings as well as <pages> section and is a life saver 🙂

Categories: Uncategorized

Listing managed processes

August 12, 2007 Leave a comment

If you have VS 2005 SDK installed

at command prompt

run "%vs80comntools%vsvars32.bat" to set environment variables

then type ClrVer -all to find all managed processes

 

image

Categories: Uncategorized