December 9, 2011
I decided to look into impersonation a bit more and how I could force our Windows Platform to impersonate, without letting our users change it back in their web.config file. I found a good number of google searches, but nothing really stuck until I realized I could simply add in the web.config of the machine [...]
October 11, 2011
I had a need to make a Windows Service, but I was using Visual Studio 2010 Express. You may notice does not come with a Windows Service template. I’m not sure why they decided not to include this template, other than they want to force people to purchase their product to get basic functionality. Little [...]
September 3, 2010
I recently started using YUIAspNet.dll and the compiled version from 2009, looks like it has a bug or two in it. The problem with the Link button where you set the NavigateURL on is the fact that it is getting the AbsolutePath, and not the AbsoluteUri. AddProperty(“NavigateUrl”, NavigateUrl.AbsolutePath); Change that line to: AddProperty(“NavigateUrl”, NavigateUrl.AbsoluteUri); Make [...]