Posts Tagged ‘csharp’

I recently had issues where Google was seeing misspellings of a domain names as different websites themselves, and possibly as duplicate content.  The domains were bound to the same web application in IIS and I wanted to fix this without editing the source of the web application itself.
I had a few options, one of which [...]

I was just about to search for a good Url regular expression to check input validation, when I remembered a recent blog post by @srkirkland mentioning Data Annotation Extensions (github).  This extension package allows for additional common use data annotations, such as URL, Email, Credit Card, etc in any .NET 4.0 project. It has been [...]

Some have recently posted that a pitfall of the Amazon Simple Email Service is that you can’t setup it up to work through a traditional SMTP as you can with other services such as SendGrid.  While Amazon SES doesn’t provide a SMTP wrapper, Amazon points out that it can be used with some modifications to [...]

At the MvcConf 2 Andrew Davey (@andrewdavey) presented a neat emailing utility for ASP.NET MVC 3 called Postal that allows for using View Engines to ease the creation of email templates, and also takes care of sending the emails out.  During the session someone raised the question about sending through third-party services, namely Amazon Simple [...]

A OpenGraphNET is a simple parser / library for the Open Graph protocol created by Facebook. More information on this protocol can be found at opengraphprotocol.org.  If this is something new to you, I’d suggest reading up on the semantic web, RDFa, and related OpenGraph materials – there is a good writeup here covering all [...]