DISQUS

DISQUS Hello! Emad Ibrahim is using DISQUS, a powerful comment system, to manage its comments. Learn more.

Community Page

Jump to original thread »
Author

Shortening URLs Using TinyUrl API in .net

Started by eibrahim · 10 months ago

Here is a quick method to shorten URLs using the TinyUrl API in .net - C# and VB
C#

public static string MakeTinyUrl(string Url)
{
try
{
if (Url.Length <= 30)
{
return Url;
}
if (!Url.ToLower().StartsWith("http") &&%3 ... Continue reading »

1 comment

Add New Comment

Returning? Login