Re: Character probs w/ Web Server

From: Mahesh Erraguntla <erragunm_at_bms.com>
Date: Thu, 20 May 1999 09:34:39 -0400
Message-ID: <37440F6F.BF635A8B_at_bms.com>


Shannon,

The following code might help you to print special characters in html.

    PROCEDURE GEN_FRENCH
    IS
    BEGIN

        htp.htmlOpen;
        FOR i IN 192.. 255
        LOOP
            htp.p(chr(i)||' ');
        END LOOP;
        htp.htmlClose;

    END; Thanks,
 Mahesh

Shannon Hickey wrote:
>
> Hello,
>
> I am wondering if someone might know the answer to my problem. I have been
> trying to include some accented French characters in my PL/SQL code to be
> displayed on an html page.
>

> Thanks!
> Shannon Hickey
Received on Thu May 20 1999 - 15:34:39 CEST

Original text of this message