- HOW TO Enable ClickOnce Compression on IISClickOnce supports using HTTP compression for the file downloads, a Web server technology that uses the GZIP algorithm to compress a data stream before…
- How to install Visual Studio 2005 on XP with just SP1Where I work there's a firewall application required in some parts of the network that doesn't play nicely with XP SP2. So we're still on SP1 while the…
- Debugging a .Net Windows Service the "easy way"Mark Pearce describes how to debug a .Net Windows service from Visual Studio: > To do this, you need to emulate what the Service Control Manager (SCM)…
- "Prison Break" a joke, "24" coming soon!"Prison Break" a joke, "24" coming soon! Well I had a big feeling “Prison Break” would be a big let-down for their “fall finale”. As I suspected they…
- Hierarchical Queries in SQL Server 2005TheServerSide.Net has a nice article on performing Hierarchical queries using CTEs on SQL Server 2005. http://www.theserverside.net/articles/showarticle.ts…
- "The test form is only available for requests from the local machine"If you simply open the web config file and add the following, you will be able to access the test form outside of the localhost:
- DNN and the Lovely "Multiple controls with the same ID" ErrorAfter having this problem several times and continually forgetting the fix, I figured I'd go ahead and make a post about it. Hopefully, it'll save someone…
- Patterns aren't just for software (ExpertsExchange 20051004)For the last newsletter I wrote a brief article describing what design patterns were and the educational benefits that they can have as they are…
- Nautical Terminology: Dead HorseWhen a Sailor pays off a debt to the command (advance pay, overpayments, etc.) they say they have paid off a Dead Horse. The saying comes from a tradition…
- Introducing the Infragistics UIElementViewer UtilityA core concept of the Infragistics NetAdvantage Windows Forms control is the idea of UIElements. UIElements are the individual elements of a control, that…
- Fixing Internal SOAP processing failureI've exposed quite a lot of my orchestrations as web services; while doing that I faced numerous problems sojust thought of summarizing all possible…
- "Geek & Greet" Christmas DinnerDave Oliver and Sarah Blow Cordially Invite All C9ers and Girly Geeks to a Christmas Dinner! Date: Saturday 17th December 2005 Time: 7:30pm Location:…
- Remove NewLine characters from the data in SQL Server> UPDATE: Xavid at 8/2/2007 in a comment suggested a simpler code: > > > REPLACE(REPLACE(REPLACE(MyField, CHAR(10), ''), CHAR(13), ''), CHAR(9), '')
- Installing Windows Update client error 0x8007041dWhen installing the latest version of the Windows Update Client, you may recieve an error that references this code: 0x8007041d
- Creating pdf in .NET from htmlIn a previous article I mentioned iTextSharp as a library that you can use to generate pdf documents from. I couldn't get it to work. Today i downloaded…
- SQL Server 2000 and 2005 same machine?Ok, I've seen this debated all over the place, and I am looking for an answer from someone who has actually done it. Can the two co-exist? Are there any…
- Differences between Visual Basic Trim function and String.Trim() methodToday I recognized that Visual Basic Trim function removes spaces only, but String.Trim() method removes all white space characters(see Remarks here)…
- Missing an item template in Visual Studio 2005? Try this...NOTE: This is not in reference to Web Templates. In VS2005 Web Projects are created through a different menu item. If you here because you cannot find the…
- ASP.NET DataGrid Template Columns with Image Button - Master Details View - Part IIThis article is in continuation with which discusses about having Image Buttons within template columns in ASP.NET DataGrid. If you have come to this…
- SharpZipLib, minor tweak to samples allows opening of ZIP files in Windows XP SP2The free C# ZIP library (http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx) is great for reading and creating ZIP files. However, I came…
