The problem isn't that it's breaking the URL. It's that the @ sign in the _text_ of the link (i.e., the text displayed on screen that the user clicks on) is causing the mess-up in the link (so that the URL is displayed as the link instead).. So, if we URL encode the @ symbol with %40, the user will actually see "L%40%40K!" instead of "L@@K".
On Thu, Nov 19, 2009 at 10:26 AM, Robert Harrison <[email protected]> wrote: > > The URL encoding for the @ symbol is %40. If you replace @ with %40 in url > strings that should work. > -- ----------------------------------------- Scott Brady http://www.scottbrady.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328565 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

