phayman


Comments:

Using Typed DataSets with SQL 2005 and stored procedures

posted by phaymanphayman(3550) 5 years, 8 months ago 0

Well done, this caused real problems

Reply

ASP.NET spell checker application

posted by phaymanphayman(3550) 5 years, 8 months ago 0

Have you looked at the Google Spelling API?

Reply

Validate a URL using regular expressions

posted by phaymanphayman(3550) 5 years, 7 months ago 0

Another one :
string pattern = @"((https?|ftp|gopher|telnet|file|notes|ms-help):((//)|(\\\\))+[\w\d:#@%/;$()~_?\+-=\\\.&]*)"

Source : http://www.geekzilla.co.uk/View2D3B0109-C1B2-4B4E-BFFD-E8088CBC85FD.htm

Also, Mail and News :
string pattern = @"(?<ignore>(^|\s|\W)[\W*])?(?<uri>((mailto|news){1}:[^(//\s,)][\w\d:#@%/;$()~_?\+-=\\\.&]+))"

Source : http://www.geekzilla.co.uk/View4FE04F67-31D8-4A4C-A627-EB6EB5A3519C.htm

Reply

Google Analytics AJAX Progress Indicator

posted by phaymanphayman(3550) 4 years, 10 months ago 0

More gif's here : http://www.geekzilla.co.uk/View04C43663-45AC-4DEF-AAAE-29C81C3CBC03.htm

Reply

Visual Studio 2008: New Features Worth Mentioning

posted by phaymanphayman(3550) 4 years, 6 months ago 0

Access to the framework source is going to be a real bonus!

Reply

Visual Studio 2008 Final coming this month

posted by phaymanphayman(3550) 4 years, 6 months ago 0

I can't wait

Reply

The uncommon features of C#.

posted by phaymanphayman(3550) 4 years, 6 months ago 0

Love the :: alias feature

Reply

URL Rewriting in ASP.NET without using HTTPHandlers or ISAPI.

posted by phaymanphayman(3550) 4 years, 6 months ago 0

I tried catching the 404 in the global.asax... worked perfectly on casini, not in IIS on a Win2003 box.. it would catch application errors but not 404's

Reply

Free charting for ASP.NET

posted by phaymanphayman(3550) 4 years, 6 months ago 0

It's talking about http://teethgrinder.co.uk/open-flash-chart/

Shame it's PHP ! <spit>

Reply

Specifying an originator IP Address on a WebService Request using Serv

posted by phaymanphayman(3550) 4 years, 5 months ago 0

My god this was a pain in the a**

Reply