- A good url regular expression ?Update 8/11/2009: This post has moved and a new better version of the regex is there: http://flanders.co.nz/2009/11/08/a-good-url-regular-expression-repost…
- Arrays: Copy vs. CloneOccasionally when working with an array is may be useful to make a copy of that array. What might not be apparent is that by making a copy of an an array…
- Serializing A String Within a CDATA Element (.NET 1.1)Apparently .NET 2.0 does this out of the box but, I don’t get to play with it for awhile so…. Today I had the need to serialize some error messages in…
- 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)…
