Sacha Tomey's blog

Molding the Microsoft BI Stack

Browse by Tags

All Tags » .Net (RSS)
PerformancePoint Planning: Deleting a Custom Member Property - A Solution
I had a bit of a rant yesterday about the fact I have had to compromise naming member properties when I've inadvertently created them with the wrong data type.  As I mentioned, I found a Dimension attribute collection method in the Planning client...
XML Namespaces and the ADOMD XML Reader Result Set
I'm building a generic helper class to flatten an ADOMD data set to a data table for easier consumption by default and third party .NET controls. I can't rely on the Load method of the data table, nor the CellSet object as in some cases not all...
WinFX Name Change
Well, I'm glad I've been keeping an eye on this WinFX stuff... http://blogs.msdn.com/somasegar/archive/2006/06/09/624300.aspx
Posted: Jun 12 2006, 01:32 PM by sachatomey
Filed under:
Invalidating ASP.NET OutputCache
You can invalidate ASP.NET output level cache using cache dependencies. The ASP.NET webform should contain something like this: <%@ OutputCache Duration="60" Location="Server" VaryByParam="None" %> If you need to invalidate...
Posted: Mar 29 2006, 02:12 PM by sachatomey
Filed under:
Assembly Base Address Generator
Saves having to calculate one.. http://montgomerysoftware.com/DLLBaseAddressGenerator.aspx
Posted: Mar 17 2006, 10:04 AM by sachatomey
Filed under:
Enterprise Library Woes
When deploying the enterprise library to a production server the following errors (or similar) can be fixed by running the 'InstallUtil' utility against the enterprise library assemblies. Failed to fire the WMI event 'DataConnectionOpenedEvent'...
Posted: Mar 16 2006, 12:44 PM by sachatomey
Filed under:
Recycle IIS6.0 application pools from code
Works with IIS6.0 Windows Server 2003 SP1... public static void Recycle( string host, string poolname) { using (DirectoryEntry apppool = new DirectoryEntry( string .Format("IIS://{0}/w3svc/apppools/{1}", host, poolname))) { apppool.Invoke("Recycle"...
Posted: Feb 28 2006, 10:00 AM by sachatomey
Filed under:
PartialCachingControl.CachedControl confusion
If you are using the @ OutputCache directive on a user control that you are adding programatically you will not receive a reference to the control type directly when you 'LoadControl' . Instead you will be returned an object of type PartialCachingControl...
Posted: Feb 09 2006, 11:20 AM by sachatomey
Filed under: