Return-Path: Delivered-To: apmail-jakarta-taglibs-user-archive@jakarta.apache.org Received: (qmail 492 invoked by uid 500); 21 Mar 2001 19:46:24 -0000 Mailing-List: contact taglibs-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk Reply-To: taglibs-user@jakarta.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list taglibs-user@jakarta.apache.org Delivered-To: moderator for taglibs-user@jakarta.apache.org Received: (qmail 25744 invoked from network); 21 Mar 2001 17:19:56 -0000 Message-ID: <3AB8E2B7.D090AAE3@apache.org> Date: Wed, 21 Mar 2001 12:19:51 -0500 From: Ted Husted Organization: Apache Jakarta Project X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: taglibs-user@jakarta.apache.org Subject: Re: URLEncoder taglib References: <3AB8B38D.86946CCF@vertech.no> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Is this the same functionality provided by HttpServletResponse.encodeURL()? If so, the Struts html:link tag does this type of encoding. The operative line of code is results.append(response.encodeURL(BeanUtils.filter(hyperlink))); The call to BeanUtils.filter is actually deprecated, and just calls return (ResponseUtils.filter(value)); Torgeir Veimo wrote: > > I'm about to create a small taglib that does the same as > java.net.URLEncoder, eg. like > text to be encoded. > > But do anyone of you know of any similar taglib that does the same, to > save me some work? > > -- > - Torgeir