ASP .NET MVC 4 application that takes a shortened URL and displays the final destination.
Enter the shortened URL into the text field and submit.
Go to wheredoesthislinkgo.com for a live implementation.
//using System.Net
var request = (HttpWebRequest)WebRequest.Create(url);
var response = (HttpWebResponse)request.GetResponse();
return response.ResponseUri;
Copyright (c) 2012 Robert Greiner. See LICENSE for details.