Now that our kids are in school my wife and I wanted to setup a family email account that we could give to our children’s teachers that would forward to both of our private email addresses. In Gmail you have the option to forward all incoming mail to 1 account easily. That however didn’t work for us because we both…
Month: September 2011
Get the root part of a domain in .NET
Need to get the .com, .us, .biz, etc. part of the domain name in .NET? Here’s how: Dim root As String root = Right(Request.Url.Host, (Request.Url.Host.Length) – InStrRev(Request.Url.Host, "."))Dim root As String root = Right(Request.Url.Host, (Request.Url.Host.Length) – InStrRev(Request.Url.Host, "."))