> I use the following code: > response.sendRedirect ( "/test.jsp?info=xxxx " ); > ' xxxx ' contains some double-byte characters. > I want to know how to encode the double-byte > characters to such like %FA%DB%DE ? You can't attach double byte characters at an URL. You have to post the values using HTTP POST to the URL. Christian -- Christian Mallwitz INTERSHOP Communications Germany Senior Software Engineer phone: +49 3641 894 334 =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
