Look in the archive for any post. You'll see it on a per message basis. Each
message has the posting date, the author and a short link.
Here's the code I use:
<CFSCRIPT>
url="cf_lists";
IF (IsDefined('link'))
{
 url=url&"/index.cfm?method=";
 Switch (ListGetAt(link, 1, ':'))
 {
  case "m":
  {
   url=url&"messages";
   break;
  }
  case "t":
  {
   url=url&"Threads";
   break;
  }
  case "s":
  {
   url=url&"Search";
   break;
  }
  default:
  {
   url=url&"Threads";
   break;
  }
 }
 url=url&"&forumid="&ListGetAt(link, 2, ':');
 if(listlen(link, ':') GTE 3)
  url=url&"&ThreadID="&ListGetAt(link, 3, ':');
 if(listlen(link, ':') GTE 4)
  url=url&"&##"&ListGetAt(link, 4, ':');
}
</CFSCRIPT>

<CFLOCATION url="#url#">


> Michael,
>
> Did you ever put together a bit of code to automatically shorten links
> in an email? I've got a project that needs the same thing, and was
> wondering if you might have something helpful.
>
> We're starting down a path of building our own makeashorterlink for
> internal use, but if anyone already has some handy code, I'm more than
> happy to have it lobbed this way.
>
> -Kevin
>
> 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=5
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=5

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.5
                                

Reply via email to