Html code stored in text format, get back in html format

Hello All, I am not much in to Database, but for one of our BI Development, we need this. We have a column which stores the html input from a webpage in text format. for example: '
' is stored in DB as '<html>' '<' and '&gt' are codes for < and > symbols. so is there any way to get the values from the DB in the HTML format like < and >. there are many other characters, not just these 2. If someone can point to, if we have any predefined function if we can convert into HTML? Thanks a lot in Advance, Regards, KN

I can't really tell from your description, but it sounds like you are doing it wrong and should do this: Oracle® XML DB Developer's Guide Contents

Similar Messages

  • How can I get Firefox to execute html code in a text file?

    I used Notepad to create a text file, markup.html, that contains html code. How can I get Firefox to execute this code?
    Also, how can I use the <script> tag in the html code using the src attribute to execute code in a file written in Javascript?

    First guess is that you did not use an .html extension on the file. The file may well be ''name.html.txt''
    * see http://www.bbc.co.uk/webwise/guides/file-extensions
    *http://windows.microsoft.com/en-gb/windows/show-hide-file-name-extensions#show-hide-file-name-extensions=windows-vista
    Forum Note
    This is normally offtopic for this forum. I say normally because now we cover webmaker questions. I wonder if this is therefore on topic as a webmaker question?
    I have tagged with webmaker-contribution

  • What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)?

    What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)?
    Thanks
    Mark

    Here are a couple of ways, one using the Netstream class and the other using the FLVPlayback component.
    For the NetStream approach, the following in the timeline code will play/loop the intended mp4 file...
         var video:Video;
         var connect_nc:NetConnection = new NetConnection();
         connect_nc.connect(null);
         var stream_ns:NetStream = new NetStream(connect_nc);
         stream_ns.client = this;
         function netStatusHandler(p_evt:NetStatusEvent):void {  
             if (p_evt.info.code == "NetStream.Play.Stop") {
                 stream_ns.seek(0); // to loop the video
         stream_ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
         video = new Video();
         addChild(video);
         video.attachNetStream(stream_ns);
         stream_ns.play("path_to/your.mp4");
    For the FLVPlayback component, add it to the stage, give it an instance name ("fp" used below), assign your mp4 file ("path_to/your.mp4") as the source property in the Properties panel, and select the option to autoplay as well.  Place the following code in the timeline...
         fp.addEventListener(Event.COMPLETE, playAgain);
         function playAgain(evt:Event):void {
             fp.play();
    To put the Flash swf file in an html page, in the Publish Settings set it to publish an swf and an html page.  Publish the file an the html page will be created for you.

  • TS1424 I have used itunes forever, now when I try to go to the itunes store, it says an error has occured error code 3212, how do I get back into the itunes store

    I have used itunes forever, Sunday night when I tried to get into the itunes store an error popped up and said could not open; error code (-3212), How do I get back into the itunes store?

    Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

  • I can not copy and paaste html code to add to craigslist, i use an html code from vflyer for craigslist add, when using my galaxy note 10.1 i get error messagen

    i can not use copy and paste feature on my tablet, it says mozilla feature not active. i downloaded firefox and still cant paste html code for my craigslist ad....please help

    Step by step, how did you arrive at seeing this agreement?

  • Hidden Item with html code views as text

    I am creating dynamic headers for a report and want every space in the header to be replaced with an html line break . How do I get APEX to recognize the break character instead of making it text.
    Thanks,
    Gary

    I tried to set the headers via pl/sql, but got a "LONG" error.
    DECLARE
    i_facility NUMBER := :p50_facility;
    o_heading VARCHAR2 (2000);
    v_heading VARCHAR2 (2000);
    v_space_location NUMBER := 0;
    v_prev_location NUMBER := 0;
    BEGIN
    SELECT '''Employee Id'':'
    || '''Sched Hours'':'
    || '''Employee Name'':'
    || '''Shift'':'
    || '''Job Title'':'
    || '''Start Time'':'
    || '''Scheduled Hours'':'''
    || bucket1
    || ''','''
    || bucket2
    || ''':'''
    || bucket3
    || ''':'''
    || bucket4
    || ''':'''
    || bucket5
    || ''':'''
    || bucket6
    || ''':'''
    || bucket7
    || ''':'''
    || bucket8
    || ''':'''
    || bucket9
    || ''':'''
    || bucket10
    || ''':'''
    || bucket11
    || ''':'''
    || bucket12
    || ''':'''
    || bucket13
    || ''':'''
    || bucket14
    || ''':'''
    || bucket15
    || ''':'''
    || bucket16
    || ''':'''
    || bucket17
    || ''':'''
    || bucket18
    || ''':'''
    || bucket19
    || ''':'''
    || bucket20
    || ''':'
    || '''Scheduled Time Off'':'
    || '''Destination'':'
    || '''Schedule Date'''
    heading
    INTO v_heading
    FROM (SELECT BUCKET_HEADER bucket1
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 1),
    (SELECT BUCKET_HEADER bucket2
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 2),
    (SELECT BUCKET_HEADER bucket3
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 3),
    (SELECT BUCKET_HEADER bucket4
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 4),
    (SELECT BUCKET_HEADER bucket5
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 5),
    (SELECT BUCKET_HEADER bucket6
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 6),
    (SELECT BUCKET_HEADER bucket7
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 7),
    (SELECT BUCKET_HEADER bucket8
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 8),
    (SELECT BUCKET_HEADER bucket9
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 9),
    (SELECT BUCKET_HEADER bucket10
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 10),
    (SELECT BUCKET_HEADER bucket11
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 11),
    (SELECT BUCKET_HEADER bucket12
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 12),
    (SELECT BUCKET_HEADER bucket13
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 13),
    (SELECT BUCKET_HEADER bucket14
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 14),
    (SELECT BUCKET_HEADER bucket15
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 15),
    (SELECT BUCKET_HEADER bucket16
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 16),
    (SELECT BUCKET_HEADER bucket17
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 17),
    (SELECT BUCKET_HEADER bucket18
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 18),
    (SELECT BUCKET_HEADER bucket19
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 19),
    (SELECT BUCKET_HEADER bucket20
    FROM wip_facility_bucket_header
    WHERE destination = i_facility AND bucket_number = 20);
    LOOP
    v_space_location := INSTR (v_heading, ' ', v_space_location + 1);
    EXIT WHEN v_space_location = 0;
    o_heading :=
    o_heading
    || SUBSTR (v_heading,
    v_prev_location + 1,
    v_space_location - v_prev_location - 1)
    || '<BR>';
    v_prev_location := v_space_location;
    END LOOP;
    o_heading :=
    o_heading
    || SUBSTR (v_heading,
    v_prev_location + 1,
    LENGTH (v_heading) - v_prev_location);
    return (o_heading);
    END;

  • How do I get back My Yahoo page in windows format. It suddenly switched to App. Andhate it

    My My Yahoo homepage suddenly switched from windows format to App. I hate it how do I get back the old format?
    Peggy

    If you can access the drive using MacDrive, the path to your user home folder is
    <top level>/Users/<your short user name>/
    I don't know of any way to access that drive, other than connecting it to another Mac.

  • HTML code issues

    I have a topic that was once stable
    , but now at one point in the top
    ic the style is correct. But in another area, the style will not take and the HTM
    L code inserts <span> etc., etc. Here is an example if you look at the H
    2 head:
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="template" content="NERC.htt" />
    <meta name="generator" content="Adobe RoboHelp 8" />
    <title>Revoking PI User Access</title>
    <link rel="StyleSheet" href="..\default.css" type="text/css" />
    </head>
    <body>
    <?rh-script_start ?><script src="../ehlpdhtm.js" type="text/javascript"
            language="JavaScript1.2"></script><?rh-script_end ?>
    <?rh-placeholder type="header" ?>
    <h1>Revoking PI User Access</h1>
    <p>Access for both a PI user and a SCADAView user can be revoked if a Mantis
    ticket requesting removal from IT AccessRequest exists. For Mantis tickets,
    make sure that a <span class="BoldName">Real Time Systems User ID Add-Changed-Remove</span>
    form completed by the user’s E4 manager is attached to the ticket. If
    not, contact the requestor.</p>
    <p>In order to remove access, you must search for the user name in both
    the old and new databases:</p>
    <ul type="disc">
    <li class="BulletedList">For instructions on revoking a user's access
      in the old database, <a href="#Removing_Access_Old_DB">click here</a>.</li>
    <li class="BulletedList">For instructions on revoking a user's access
      in the new Active Directory database, <a href="#Removing_Access_New_DB">click
      here</a>.</li>
    </ul>
    <p>After revoking a PI user's access, you also need to remove the user's
    name from the Outlook Address Book. For instructions, <a href="#Removing_User_Outlook_Group">click
    here.</a></p>
    <h2>Removing a user's access in the old database<a name="Removing_Access_Old_DB"></a></h2>
    <ol>
    <li class="NumberedList"><p style="margin-left: 0px;">Go to the SCADA
      website at <a href="http://scada/" style="font-size: 10pt;">HTTP://SCADA</a>.</p></li>
    <li class="NumberedList"><p>When the <span class="BoldName">SCADA &amp;
      Distribution Automation</span> home page displays, under <span class="BoldName">PI
      Historian</span>, click <span class="BoldName">User Maintenance</span>
      (circled in red). <a class="dropspot" href="javascript:TextPopup(this)"
            id="a5">Click to view</a>.</p>
    <div class="droptext" id="POPUP134020538" style="display: none;">
      <p><img src="../PI_Historian.jpg" alt="" style="border-left-style: Solid;
         border-left-width: 2px; border-right-style: Solid; border-right-width: 2px;
         border-top-style: Solid; border-top-width: 2px; border-bottom-style: Solid;
         border-bottom-width: 2px;" width="194" height="109" border="2" /></p>
    </div></li>
    <li class="NumberedList"><p>When the SCADA System Logon screen displays,
      perform the following:</p></li>
    </ol>
    <ol start="1">
    <li class="NumberedList2"><p>For <span class="BoldName">User Id,</span>
      enter your PI user id.</p></li>
    <li class="NumberedList2"><p>For <span class="BoldName">Password,</span>enter
      your PI password.</p></li>
    <li class="NumberedList2"><p>For <span class="BoldName">Select Group,
      </span>click <span class="BoldName">PRG</span> from the dropdown list.</p></li>
    <li class="NumberedList2"><p>Click <img src="../ButtonSubmit.JPG" alt=""
                style="border: none;" width="61"
                height="25" border="0" /><span
      class="BoldName">.</span></p></li>
    </ol>
    <p style="text-indent: 84px;"><span class="BoldName">&#160;Result:</span><span
      class="Result"> The </span><span class="BoldName">User Administration</span><span
      class="Result"> screen displays the user's information. <a class="dropspot"
      href="javascript:TextPopup(this)" id="a2">Click to view</a>.</span></p>
    <div class="droptext" id="POPUP133400192" style="display: none;">
    <p><img src="../UAdminKUSBJX.jpg" alt="" style="border: none;" width="456"
        height="368" border="0" /></p>
    </div>
    <ol start="4" type="1">
    <li class="NumberedList"><span class="Result">I</span>f the user id
      is recognized, but PI access must be removed while keeping <span class="BoldName"
      style="font-weight: normal;">SCADAView.</span></li>
    <li class="NumberedList">If the user id is recognized, but PI access
      must be removed while keeping <span class="BoldName" style="font-weight: normal;">SCADAView
      access, uncheck the </span><span class="BoldName">PI Access</span><span
      class="BoldName" style="font-weight: normal;"> checkbox and click
      </span><img src="../ButtonModify.JPG" alt="" style="border: none;"
         width="63" height="25" border="0" />. </li>
    </ol>
    <p style="margin-left: 60px;"><span class="BoldName">&#160;Result: &#160;</span>If
    the PI-only access removal is successful you should see this message (circled
    in red).</p>
    <ul type="disc">
    <ol start="6" type="1">
      <li class="NumberedList"><p>&#160;</p></li>
      <li class="NumberedList">If both SCADAView and PI Access must be
       removed, click <img src="../ButtonDelete.JPG" alt="" style="border: none;"
            width="63" height="24" border="0" />.</li>
      <p>&#160;Result: If both SCADAView and PI access removal is successful
       you should see the following message (circled in red). <a class="dropspot"
       href="javascript:TextPopup(this)" id="a4">Click to view.</a></p>
      <div class="droptext" id="POPUP133037650" style="display: none;">
       <p><img src="../UAdminDeleted.jpg" alt="" style="border: none;"
          width="466" height="409" border="0" /></p>
      </div>
      <p class="Note" style="margin-left: 108px; text-indent: -48px;">&#160;NOTE:
       &#160;<span style="font-weight: normal;">The User ID is the person’s
       LAN user id. This removes the user id from the GLOBE_USER table.</span></p>
      <h2><span style="font-weight: normal;">Removing a user's access
       in the new database (Windows Active Directory)<a name="Removing_Access_New_DB"></a></span></h2>
      <ol type="1">
       <li class="NumberedList"><p><span style="font-weight: normal;">Remote
        desktop to either server: <span style="font-weight: bold;">cccs-pifig01</span>
        or <span style="font-weight: bold;">lc3s-pifig01</span>.</span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">Double-click
        the <span style="font-weight: bold;">Energy PI Users Group.</span></span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">When
        the<span style="font-weight: bold;"> Energy PI Users Properties
        </span>dialog<span style="font-weight: bold;"> </span>displays,
        select the <span style="font-weight: bold;">Members</span>
        tab. See below.</span></p></li>
      </ol>
      <p style="margin-left: 48px;"><span style="font-weight: normal;"><img
       src="../Remove_NewDB.jpg" alt="" style="border: none;" width="963"
       height="642" border="0" /></span></p>
      <ol start="4" type="1">
       <li class="NumberedList"><p><span style="font-weight: normal;">Select
        the LAN user name on the screen and click <img src="../ButtonRemove.jpg"
                    alt="" style="border: none;"
                    width="75"
                    height="24"
                    border="0" />.
        </span></p></li>
      </ol>
      <p style="text-indent: 60px;"><span style="font-weight: normal;"><span
       style="font-weight: bold;">&#160;Result:</span> The user is removed
       from the PI access Active Directory user database.</span></p>
      <h2><span style="font-weight: normal;">Removing a user's name from
       Outlook<a name="Removing_User_Outlook_Group"></a> </span></h2>
      <p><span style="font-weight: normal;"><span class="BoldName" style="font-weight: normal;">This
       procedure involves removing the newly deleted user from the </span><span
       class="BoldName">T&amp;D PI Users</span><span class="BoldName"
                   style="font-weight: normal;">
       group in the Outlook Address Book.</span></span></p>
      <ol start="1" type="1">
       <li class="NumberedList"><p><span><span class="BoldName" style="font-weight: normal;">Open
        the address book in Outlook.</span></span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">Locate
        and delete the user’s name from the <span class="BoldName">T&amp;D
        PI Users group.</span></span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">Complete
        the Mantis ticket.</span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">If
        the user is on the Terminated Employees list, enter the employee’s
        user id in the PI Access column and highlight the entire row
        with an orange background color.</span></p></li>
      </ol>
      <p>&#160;</p>
      <?rh-placeholder type="footer" ?>
    </ol>
    </ul>
    <?rh-placeholder type="footer" ?>
    <?rh-script_start ?><script type="text/javascript" language="JavaScript1.2">//<![CDATA[
    if( typeof( TextPopupInit ) != 'function' ) TextPopupInit = new Function();
    TextPopupInit('a5', 'POPUP134020538');
    TextPopupInit('a2', 'POPUP133400192');
    TextPopupInit('a4', 'POPUP133037650');
    //]]></script><?rh-script_end ?>
    </body>
    </html>
    I am exhausted from deleting specific HTML code to make the content work. Plus there seems to be an issue with the margins moving around. Can someone help me with this HTLM code nightmare? Other than deleting it all and inputting the text again? This is the only topic in my project in which this has occurred.

    Hi Gloria,
              Its not possible to talk about a solution until you know the issue which caused it. the question is the HTML cannot get reorganize in RoboHelp if it is not edited exclusively - by this I mean if you bring in all the content through RoboHelp UI then RoboHelp will not change HTML by itself, until you manually change the html code.
    you should try to find out the cause of the seizure (by which I think you mean hang), It could be that you are using any version control and it failed to checkout/checkin one or more project files, It might be that .cpd file got corrupted in that case you can try deleting the .cpd file after closing the project and it will get recreated by RoboHelp on next Open project, or it is possible that some of your shared resources might be missing/moved because of which RoboHelp hangs then in such case you should replace/remove these resources.
    You should not be working on the project over network (i.e. the Project should be on the local drive).
    Are you using CBTs and UDVs or your topics are too large (and thus processing of these topics seizes RoboHelp)
    by any means deleting random HTML code of any topic might actually make the HTML invalid and cause more crashes or hangs.
    I have listed down almost all the reason..
    one way is to remove topics and find out the culprit topics which causes the hang and if you find one you can share it with me at [email protected] and I might find the cause of RH hang by inspecting that
    Hope this helps
    Ashish

  • Editing HTML code within RH 7 project

    Since converting from RH 5 to 7 we cannot edit the HTML code.
    If we even look at the HTML editor, when we go back to the Design
    editor the topic has lost the template as well as the drop-down
    text within the topic. Has anyone else experienced this
    problem?

    Yes, We are having the same problem.

  • Problem removing html tags from the text retrived

    Hi there,
    I am using jdbc to connect the database and retriving the data. In one of the columns along with the description there are some html tags in few of the recors of that column. is there a way to retrive the text only ignoring the html tags in between. Or can i retrive and then strip off the html code in the text to display only normal text.
    example of the data retrived which are pipe seperated and one of the columns has html tags in it:
    209|The euphoria |187945-2|http://www.abc/lst.jsp?mktgChannel=I86023&sku=18791-2&siteID=qpF0HYnRugA|http://www.abc.com/assets/images/product/medium/18793-2_198.jpg|Rooftop Singers: Walk Right In | abc Music proudly presents THE FOLK YEARS, an unforgettable era in music history!<BR><BR><B>Featuring:</B><BR>
    <LI>The most complete collection of folk and folk-rock songs ever put together -- 132 classics!
    <LI>Original hits by the original artists!
    Now i need to remove the tags before displaying this on the output. Is there a simple way to do this.
    Thanks...

    Did you read the documentation of the trim() method,
    where it describes which whitespace it removes?I believe his problem is that
    "Some text here  
    <blah> 
    More text"becomes
    "Some text here  
    More text"... and he wants ...
    "Some text here
    More text"So, your problem is that your regex isn't matching whitespace as well.
    See the "Trimming Whitespace" section:
    http://www.regular-expressions.info/examples.html

  • Problem with HTML code wich is transforming by RH

    Hello
    I would like to know if there is a way to stop the transformation that Robohelp does in the html code.
    For example:
    I write in the html editor :
    <div id="footer">
    bla bla bla
    </div>
    I go back to the Conception editor to work, then, when I go back to the html editor, the code became :
    <?rh-region_start id="footer" style="x-right: -1240px; x-bottom: -110px; " ?>
    bla bla bla
    <?rh-region_end ?>
    Is there a way to stop it ?
    Thanks

    Hi there
    I suspect what is happening is that you are trying to use the term "footer" to identify a div and because RoboHelp offers its own footer and header, these are "reserved" words that RoboHelp will insist on using.
    It's no different than what you encounter when scripting or programming.
    The only suggestion I can make is to perhaps use a variant on the name. Perhaps insert a zero for one or both of the letter o in footer so it looks like this: f00ter.
    Cheers... Rick

  • Is it possible to add html code to iweb

    I need to add some special elements to a webpage, and I was curious if I could add any special html code besides the ones I have found in the menu (counter, links, etc)
    Thanks

    This is iWeb's glaring weakness. I need the ability to add html for blog rolls, haloscan comments on blogs, etc.
    Currently, I use RapidWeaver, but the drag and drop design elements in iWeb are far superior. However, the ability to add raw html code is going to hold iWeb back.
    Add this, Apple, and you've got a winner.

  • Report with piped Column incl. html-code

    Hi,
    I have a SQL Report with a table based function behind, like:
    SELECT * FROM table(my_function());
    One of the column in this report is with html-code. In the Column Attributes of this column I have changed the "Display As" to "Standard Report Column". That works perfect for me. But if I enable the report to print (pdf or excel) the export shows the html-code.
    Is it possible to change the html-code in the pdf/excel export to the same view like the "Display As"/"Standard Report Column"?
    thanks,
    carsten

    I dont think so.
    How will you display a textbox in PDF?
    If you need similar look and feel then using XML Publisher you can create a similar output.
    Regards,
    Abhishek

  • How can I get the HTML codes in illustrator?

    Hi, I am a graphic designer, and I am getting into the web world, I wanna know how can I get the HTML codes to upload a web design made using Illustrator,...¡?Does any one know?Please let me know...

    everyone here is right, dreamweaver is better and you will need to understand html for this to work. HOWEVER, you can make a functional website using just illustrator and notepad (or text edit if you're on a mac).
    Design your site in illy, slice it up with the slice tool. http://s23.postimg.org/mv311kpp7/test_illy.jpg 
    Save for web and select html and images, you'll get an html file and an images folder. Open the HTML file in your text editing program and it will look like this: http://s10.postimg.org/f32nf6r2h/html_stuff.jpg   you'll have to know HTML codes but you can find tutorials online for most stuff, you'll just have to figure it out. In my fake site, i linked a button to google so i had to add <a href> tags to the code. http://s22.postimg.org/5avpadhch/a_href.jpg  save the html file and open it in your web browser, hopefully not IE. You can't tell in the picture but the middle button actually does link to google. http://s21.postimg.org/qd77slqmf/firefox.jpg

  • HTML code gets displayed

    I'm running the Weblog service with OS 10.4.6. When creating an entry on a weblog most of the HTML code gets translated correctly; image links, html links, etc. But on certain HTML tags the code gets displayed and it's not translated. For Example if add a horizontal ruler the html tag is displayed.
    When I use the tag <hr /> the horizontal ruler does not get display only the tag gets displayed on the weblog.
    Is there a way to allow certain HTML tags to be translated?
    X-Serve   Mac OS X (10.4.6)  

    Hi,
    I will now attempt to shed as much light on this topic as possible...
    There are two main buffers where stuff gets stored before going to the ResponseOutput; the JspWriter out, and the pageContext.include(). (perhaps you are using this method in your tag). The include method sends it's stuff to the ResponseOutput immediately, where as the JspWriter does not... i don't think? The problem is that the include method is supposed to flush the JspWriter before processing the include and i found that it didn't do a very good job...
    "The current JspWriter "out" for this JSP is flushed as a side-effect of this call, prior to processing the include. "
    The solution is to manually flush the JspWriter before...
    JspWriter.flush();
    hope this helps!
    Randy

Maybe you are looking for

  • FETCHING OUTPUT  VALUE FROM PL/SQL BLOCK

    hI aLL, I'm working on ODP.NET. I'm executing below pl/sql command. while executing this command in pl/sql it's showing the output which is an xml. declare xmloutput xmltype; xmldata varchar(32767); teid t_id := t_en_id( 'L','L',NULL,12121,'ABC','USE

  • Error in parsing the taglib tag in the JSP page

    Hi We are trying to deploy and run a Web Application in CE 7.1 SP01. We are successful in deploying and running servlet based web pages, but when it comes to JSP's the taglibs are not parsed and we get the following error message Runtime error in pro

  • OSB - Simple passthrough

    I'm sorry to ask what's probably going to sound laughably trivial, but I'm a bit stuck. I've created a simple ADFbc web service using one of the tutorials out there and I have the basic getEmp1, createEmp, updateEmp SOAP methods. I'm trying to follow

  • Cloned data source slower than cloneable

    i use two cloned data source.... one to create a player and the other to record the movie to a file but when i start to record it is like it slows down. could someone help me please ? thank you in advance

  • Creating the Shop Component  XCM

    Hi, We are configuring ISA in ECC 5.0(ERP). When trying the URL http:///shopadmin/shopadmin/init.do we are getting a message "ISA Framework: Internal Error No XCM application configuration has been passed and there is no default XCM application confi