DISQUS

Community Page on DISQUS

what is this?

Jump to original thread »
Author

Shortening URLs Using TinyUrl API in .net

Started by eibrahim · 3 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 »

0 comments

This thread has no comments yet.

Add New Comment

Returning? Login