Trace statement outputs html code

I am trying to get a trace statement to just out put the
contents of a dynamic text field.
What I get is this...
<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT
FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0"
KERNING="0">welcome to my
problem</FONT></P></TEXTFORMAT>
ABC
<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT
FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0"
KERNING="0">welcome to my
problem</FONT></P></TEXTFORMAT>.html
any help would be great.
Thanks
Bill

disable the html property of your textfied. and/or uncheck
the auto-kern box.

Similar Messages

  • Console not showing trace statement output

    Hello,
    I have set up Flash Builder 4.6 for the first time for an ActionScript project. All good so far except that the console window doesn't show the output from my simple trace statement for my first little Hello World tester? There wasn't a console window on the workspace so I added one but on Run it says
    No consoles to display at this time.
    What do I need to do?
    Any help much appreciated...
    Steve

    I don't see any attempt to assign text to any textfields in your code.  What code are you using that is not working? Where would you be trying to assign to these textfields in your code?  You need to create two textfields and give them instance names.  Then, in your code, you assign the x and y values to those textfeilds...
    tFieldX.text = String(mCoordPlane.mAlignment.x);
    tFieldY.text = String(mCoordPlane.mAlignment.y);
    I also don't see any code relative to checking the position of the mCoordPlane.mAlignment to show a message.  After that object changes position you should have a conditional to test if its x,y properties are 0,0, and then assign to a textfield for that message or make a moviewclip appear that has that message, or whatever your intention is for displaying a message.
    if(mCoordPlane.mAlignment.x == 0 && mCoordPlane.mAlignment.y == 0){
         messageField.text = "aligned";
    You may end up having issues with accuracy regarding geting a zero value since you are operating with decimal value changes... meaning you may not get exactly 0,0 values.
    Also, in the code you showed there is unnecessary repetition of these lines...
            trace(mCoordPlane.mAlignment.x);
            trace(mCoordPlane.mAlignment.y);
    If each conditional includes it, then you only need to have it once at the end after the conditionals

  • How to output HTML code in methods without out.print

    Hi,
    I am trying to create a larger web-site with jsp. At first I tried to structure the page using include files. Since there is a limit for the length of if/else blocks, I now switched to using methods instead.
    The Problem I have is that there a larger HTML blocks I dont want to print with out.print because that would make the source unreadable.
    Unfortunately the <%= tag doesnt work in methods.
    Here a code sample:
    <%!
    public void processOrder()
    for(int i=1; i<10; i++)
    out.print("<table>");
    out.print("<tr>");
    out.print("<td>Your Order:<td>");
    %>
    Isnt there a way to use a tag like <%= ?
    Or are there other constructs then methods which can handle <%= ?
    With PHP it would be no problem. So I wonder why there should be no way to do it with jsp.

    I generally put dynamic output in a separate class file; you can then either instantiate the class in a scriptlet and call the appropriate method (which can either return a string or do all of your out.prints) or use a jsp:useBean tag.
    Given the following class:
    public class myHTML {
       public myHTML(){}
       public String renderTable(){
          String s = "";
          s += "<TABLE>\n";
          s += "<TR><TD>some content</TD></TR>\n";
          s += "</TABLE>\n";
          return s;
    }You can then do either of the following in your JSP page:
    1.<%
       myHTML mh = new myHTML;
       out.print(mh.renderTable());
    %>2.<jsp:useBean id="somename" class="somepkg.myHTML" scope="request">
    <%=somename.renderTable()%>
    </jsp:useBean>Either will work, and all of the redundant out.print or String concat lines are moved out of the JSP.

  • Automatic html code generated in {module_case} output

    Does anyone know a work around for the automatic spacing and carriage return that BC system generates when the {module_case} is displayed?  I have BC form that is transferring this data from BC to a third party site and the extra code being generated :
    %0D = Carriage Return
    %0A=line feed
    Is killing the callback method of the form
    Screenshot of how form looks on screen
    http://screencast.com/t/aSw3pywL
    Screenshot of backend with extra return
    http://screencast.com/t/4xfESLGpu
    Screenshot of extra code generated
    http://screencast.com/t/NmlCxbGgiEC

    In struts my string pritns like this
    var abc = new Array(["A", "B"]);
    I pass this string to JSP. and in the outputted html,
    all double quotes are replaces by its equivalent ASCII &#034;
    :(

  • Html App: air.trace() not outputting to console... are Adobe still supporting html apps in AIR?

    Hi
    Just getting up and running
    Mac OS X 10.9. Adoe AIR 3.9. All working fine except air.trace() not outputting anything to the console.
    Bit of googling meant I created a mm.config in ~ with the line:
    ErrorReportingEnable=1
    but still no joy.
    Any other tips for getting this to work or is it just now broken and/or unsupported?
    Are HTML apps wrapped in AIR now legacy technology?

    I have the same question... I've been trying to get an Adobe AIR HTML app going, but there appears to be no IDE that supports debugging an HTML/JS AIR App, and fdb, which is supposed to be able to debug HTML/JS AIR apps, does not.
    Is HTML/JS still a supported way of developing Adobe AIR apps?  If so, then why aren't issues like this getting some attention?
      -Josh

  • Conditional statement in html

    This is actually not a JSP question but an HTML question. I could'nt find any good html forum sites out there, and since I received excellent replies in my previous post, I am hoping that those of you who know JSP also know html. Heres my question, is there any conditional statement in html (I don't want to use scripts)? The only conditional statement I found was the logic:equal (not equal) statement. And it seems to only work for forms. I am using JSP in conjunction with html so I used an inner html variable declaration in my JSP function. This variable will be used by my html code. And I would like to check the value of that variable in html.
    Heres my JSP function containing the inner html declaration:
    function showItemEdit(field)
    var elements = editWindowDiv.document.all;
    elements("editWindowField").value = "";
    fieldhtml.innerHTML = field;
    var retVal = null;
    retVal = window.showModalDialog("javascript:document.write(window.dialogArguments.innerHTML);editWindowInit();",editWindowDiv,
    "dialogWidth:335px;dialogHeight:185px;scroll:no;status:no;unadorned:no");
    if (retVal == "OK")
    alert("OK");
    else
    alert("Cancel");
    The inner html variable, fieldhtml.innerHTML, is the value I would like to check in my html code.
    This is what I woul like to accomplish in my html code:
    if fieldhtml == register then
    <tr>
    <td class="bodymd">  <bean:message key="label.register"/>:</td>
    <td><input type="text" name="editWindowField" value="" maxlength="5"></td>
    </tr>
    else
    <tr>
    <td class="bodymd">  <bean:message key="label.shift_no"/>:</td>
    <td><input type="text" name="editWindowField" value="" maxlength="3"></td>
    </tr>
    end if
    I am not sure how to accomplish if-else statements in html. I would appreciate any help. Thanks!

    You are mixing things a bit. There is no JSP in your example. You cannot do conditional statements in HTML. However, you can use JavaScript to output HTML:
    if(someCondition){
    document.write("<yourHTMLTags>whatever</yourHTMLTags>");
    else{
    document.write("<yourHTMLTags>something else</yourHTMLTags>");
    }

  • Can i write Html code inside JSP method???

    hi i am newbie to jsp and servlets. i am working on a project where i have to use same html code for two conditions in jsp. my question is can i write that html code inside any method in jsp?? and then can i call that method within that if and else scope. can anyone help me with this??

    I don't think that does what you think it does.
    <%!
    void renderStateSelect(String default) { %>Creates a method with that signature and an open brace...
    <select name="state"> puts:
    out.println("<select name=\"state\">");
    into the _jspService method
    <%!
    // logic to loop thru states
    %>Puts the loop logic after the brace opening up the method renderStateSelect
    </select>puts
    out.println("</select>");
    in the _jspService method
    <%!
    %>Closes the renderStateSelect method.
    So if I do this:
    <html>
    <body>
    <%!
    void renderStateSelect(String def) { %>
    <select name="state">
    <%!
    // logic to loop thru states
    %>
    </select>
    <%!
    %>
    Hello<br/>
    <% renderStateSelect("none"); %>
    Everybody
    </body>
    </html>The html output is:
    <html>
    <body>
    <select name="state">
    </select>
    Hello<br/>
    Everybody
    </body>
    </html> The 'renderStateSelect method does not render the state select. The _jspService method does, in place where the HTML is written in the JSP file.  As another look, the translated servlet looks like this:
    package org.apache.jsp;
    public final class IsThisOk_jsp extends org.apache.jasper.runtime.HttpJspBase
        implements org.apache.jasper.runtime.JspSourceDependent {
    void renderStateSelect(String def) {
    // logic to loop thru states
      public void _jspService(HttpServletRequest request, HttpServletResponse response)
            throws java.io.IOException, ServletException {
        try {
          out.write("<html>\r\n<body>\r\n");
          out.write("<select name=\"state\">\r\n");
          out.write("</select>\r\n");
          out.write(" \r\nHello<br/>\r\n");
    renderStateSelect("none");
          out.write("\r\nEverybody\r\n</body>\r\n</html>\r\n ");
    }See. Any plain HTML code you put outside of the <%! %> tags is converted to out.printlns inside the _jspService method (in place where they occured in the JSP, not where the method you want to do the rendering is called...)
    So unless I completely misunderstood your intent here, this apprach does not work.

  • Problem when importing HTML code to JSP

    When I copy HTML code to JSP strange thing happens - "It's" became "It?s". But that's not all. I changed "It?s" to "It's", but when I run the JSP output on the screen is still "It?s".
    Why does this happens?
    What to do?

    Pls state the server, browser and complete code snippet

  • Web Intelligence: Save Report as PDF and with embedded HTML code

    Hi all.
    Sorry but I'm not able to find any post about this matter, please feel free to provide links if you know existing topics about this problem.
    We created a beautiful report with HTML5 code embedded into a blank cell and we are now trying to export it in a printable format (e.g.: PDF or HTML).
    As you know (as per manual information) it is not possible to export a report with embedded HTML code and keeping it in the output (cell with embedded HTML code is rendered blank).
    My question is: is there a known workaround or an alternative solution to export the report and keep its content?
    Print screen is not a valid option :-P
    Thanks for the support or any suggestions
    Stecas

    Product limitation; vote for change on ideaplace, etc. I don't believe there is an *easy* workaround, but see:
    https://scn.sap.com/thread/3149287
    HTH
    NMG

  • Quote transformed into ' (quote html code)

    Hi all,
    I try to translate an dbms_xmlapi.DOMDocument with xslt.
    My problem is all quote ' are translated to their html code entity : &apos.
    The french accent causes problem too.
    Could you help me ? I'd like to know if it's possible to disable this translation.
    Benoit Pironet

    Not currently. You would need to specify output at text, but this is not currently supported by the database XSLT engine

  • How can I make my XSLT processor accept html code ?

    In my applications the Oracle xslt processor wont accept simple HTML tags within an XML source while transforming the source into HTML. Both processors either will throw parser exceptions or ignore the HTML code in the XML source completely, though output-escaping is explicitly enabled.
    In detail, I want to transform an XML source like this...
    <element>
    Hello, this is a <b>XML</b> text source mingled with html<sup>TM</sup>
    </element>
    ... with an XSL Stylesheet like this...
    <xsl:stylesheet>
    <xsl:output method=html cdata-sections=element/>
    <xsl:template match=element>
    <html>
    <body>
    <xsl:value-of select=. output-escaping=yes/>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>
    ... which should result in a HTML code like this ...
    <html>
    <body>
    Hello, this is a <b>XML</b> text source mingled with html<sup>TM</sup>
    </body>
    </html>
    The result, however, is always like this:
    <html>
    <body>
    Hello, this is a XML text source mingled with htmlTM
    </body>
    </html>
    This means that the additional HTML tags inside the XML source have been completely ignored by the XSLT processor though I enabled the output-escaping.
    If anybody should think now that mingling HTML with XML text is stupid because I could also format the result with the XSL Stylesheet itself, he might be right, of course, but: I cant avoid this because in my application the XML source results from a users web form entry. The user working with the form must be able to decide whether he wants to include HTML in his text or not. In any case, any HTML code he enters should just be transported WITHOUT ANY CHANGES to the resulting HTML page, not omitted without comments! It seems quite simple to me, but the XSLT processor doesnt want to agree with me in this point :-(
    So, once again in brief: Is there any possibility to tell my XSLT processor not to parse, transform or manipulate HTML tags, but to transport them unchanged to the output ?
    After weeks of research any helping sign would be a great relief...
    Many thanks in advance.

    I don't understand the answer, can you please expand. I am trying to do a similar thing by creating an output buffer,
    assemble a mix of text and html tags and then output this buffer later. All of the html tags are skipped or re-escaped in the final html:
    In this example I want to print the IPRCROP, then add an html break (<br>).
    Example 1. Use xsl:text with escape = yes
    <xsl:variable name="buffy">
    <xsl:for-each select="documents/document">
    <xsl:value-of select="IPRCROP"/>
    <xsl:text disable-output-escaping="yes">&lt;br&gt;&lt;/br&gt;</xsl:text>
    </xsl:for-each>
    </xsl:variable>
    <xsl:value-of select="$buffy"/>
    In this case the <br> and </br> end up re-escaped in the output html as #60 etc. so they appear literally as
    ALFALFA <br> BARLEY <br>
    and in source as: ALFALFA&#60; br &gt; &#60; /br &gt;BARLEY
    Example 2, try as pure text, it just skips the <br></br> altogether
    <xsl:variable name="buffy">
    <xsl:for-each select="documents/document">
    <xsl:value-of select="IPRCROP"/>
    <xsl:text><br></br></xsl:text>
    </xsl:for-each>
    </xsl:variable>
    <xsl:value-of select="$buffy"/>
    output = ALFALFABARLEY

  • How to create a pie diagram and display it in html code

    hii frds,
    happy 2 meet u all.
    I want to know how to create a pie diagram that should not be devleloped by using applet, and use it in the html code to display a pie diagram in browser.
    ex code:
    package temp;
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.JFrame;
    public class Dummy1 extends Panel {
    BufferedImage image;
         int a1,a2,l,t,w,h;
    public Dummy1()
              try
    a1=90;
              a2=210;
              l=10;
              t=10;
              w=200;
              h=200;
    } catch (Exception ie) { System.out.println("Error:"+ie.getMessage());  }
    public void paint(Graphics g) {
    // g.drawImage( image, 0, 0, null);
    g.setColor(Color.green);
              g.fillArc(l,t,w,h,0,a1);
    g.setColor(Color.red);
              g.fillArc(l,t,w,h,a1,(a2-a1));
         g.setColor(Color.blue);
              g.fillArc(l,t,w,h,a2,(360-a2));
              System.out.println("in paint");
              image=(Image)g.getGraphics();
    public JFrame getMyFrame()
    JFrame frame=null;
              try
    frame = new JFrame("Display image");
    Panel panel = new Dummy1();
    frame.getContentPane().add(panel);
    frame.setSize(500, 500);
    // frame.setVisible(true);
    // frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              }catch(Exception e) { e.printStackTrace(); }
              return frame;
    static public void main(String args[]) throws
    Exception {
    JFrame frame = new JFrame("Display image");
    Panel panel = new Dummy1();
    frame.getContentPane().add(panel);
    frame.setSize(500, 500);
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    - > with out using <applet> in html can't we display the awt grahics in browser.
    plz clarify my doubts.
    thank you.
    regards
    moons..

    If you are using MSSQL SERVER then try creating a stored procedure like this
    create proc Name
    select * from Table
    by executing this in sql query analyzer will create a stored procedure that returns all the data from Table
    here is the syntax to create SP
    Syntax
    CREATE PROC [ EDURE ] procedure_name [ ; number ]
        [ { @parameter data_type }
            [ VARYING ] [ = default ] [ OUTPUT ]
        ] [ ,...n ]
    [ WITH
        { RECOMPILE | ENCRYPTION | RECOMPILE , ENCRYPTION } ]
    [ FOR REPLICATION ]
    AS sql_statement [ ...n ]
    Now Create new report and create new connection to your database and select stored procedure and add it to the report that shows all the columns and you can place the required fields in the report and refresh the report.
    Regards,
    Raghavendra
    Edited by: Raghavendra Gadhamsetty on Jun 11, 2009 1:45 AM

  • Display HTML code in WebDynpro for ABAP

    Hi, I would like to display a html page in a WebDynpro View, ie: I have the html code in a "string" variable and would now display this string now not with the html tags visible, but as a "real" html page.
    I found a thread in WebDynpro for ABAP but I am a little bit lost in converting the logic to ABAP world.
    Thanks

    >I found a thread in WebDynpro for ABAP but I am a little bit lost in converting the logic to ABAP world.
    I'm a little bit confused by this statement. Do you mean you found a thread in Web Dynpro Java, perhaps?
    Regardless the approach is possible using the iFrame UI.  The warning about the iFrame is that it is deprecated in NetWeaver 7.0 and 7.01 and my not be usable depending upon your support package level. However in NetWeaver 7.02 the iFrame returns to fully supported status.
    If you have the HTML content in a string, you can simply place it into the ICM cache.  This will provide a temporary URL for the content (you supply the lifetime of the URL) that can be referenced via the iFrame URL or even the LinkToURL if you want to open in a new window.
    Here is the code for placing the string into the ICM Cache:
    ****Create the cached response object that we will insert our content into
      data: cached_response type ref to if_http_response.
      create object cached_response
        type
          cl_http_response
        exporting
          add_c_msg        = 1.
      try. " ignore, if compression can not be switched on
          call method cached_response->set_compression
            exporting
              options = cached_response->co_compress_based_on_mime_type
            exceptions
              others  = 1.
        catch cx_root.
      endtry.
    ****set the data and the headers
      data: l_app_type type string.
          cached_response->set_cdata( lv_html_text ).
          l_app_type = 'text/html'.
    cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                         value = l_app_type ).
      cached_response->set_status( code = 200 reason = 'OK' ).
      cached_response->server_cache_expire_rel( expires_rel = 60 ).
      data: guid type guid_32.
      call function 'GUID_CREATE'
        importing
          ev_guid_32 = guid.
      concatenate '/sap/public' '/' guid '.' 'html' into lv_iframe_url.
    ****Cache the URL
      cl_http_server=>server_cache_upload( url      = lv_iframe_url
                                           response = cached_response ).
      wd_context->get_element( )->set_attribute(
        name =  `IFRAME_URL`
        value = lv_iframe_url ).

  • BB sent email msgs show as HTML code with Entourage?

    All my emails sent from my BB BOLD appear to what I think is HTML code in my "sent" folder in Entourage. When viewing the sent folder on my HP laptop using Outlook the sent msgs appear normal. Anyone have any suggestions for a remedy. So far, APL CARE and Microsoft tech support have no suggestions for a fix. Below my mane is a sample of what a sent msg from my blackberry looks like in Entourage. I deleted some info for privacy purposes.
    Stats:
    Bold 9000 OS 4.6.0.297
    Mac OS 10.6.2 (IMAC 27")
    Office 2008 Business Edition
    Exchange email but not setup through an enterprise server
    1 very frustrated customer!
    Jason
    X-MimeOLE: Produced By Microsoft Exchange V6.5
    Received: from 67.223.78.109 ([67.223.78.109]) by dspsrv1.DSPCLINICAL.local ([192.168.30.10]) with Microsoft Exchange Server HTTP-DAV ; Wed, 3 Feb 2010 16:12:55 +0000
    MIME-Version: 1.0
    Content-Type: text/html;
    charset="Windows-1252"
    Content-Transfer-Encoding: quoted-printable
    X-rim-org-msg-ref-id: 1494303592
    Content-class: urn:content-classes:message
    Subject: Fw: jungreis edc
    Date: Wed, 3 Feb 2010 11:15:34 -0500
    Message-ID: <1494303592-1265213724-cardhudecombobulatorblackberry.rim.net-311610119-@bda066.bisx.prod.on.blackberry>
    X-MS-Has-Attach:
    X-MS-TNEF-Correlator:
    Thread-Topic: jungreis edc
    Thread-Index: Acqk677TN29/DgTOTZOarV/XXQzg==
    From: "Jason
    To: "Jacob
    Reply-To: "Jason
    <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
    xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
    xmlns:st1=3D"urn:schemas-microsoft-com:office:smarttags" =
    xmlns=3D"http://www.w3.org/TR/REC-html40">
    <head>
    <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)">
    <o:SmartTagType =
    namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
    name=3D"Street"/>
    <o:SmartTagType =
    namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
    name=3D"address"/>
    <o:SmartTagType =
    namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
    name=3D"City"/>
    <o:SmartTagType =
    namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
    name=3D"place"/>
    <!--[if !mso]>
    <style>
    st1\:*{behavior:url(#default#ieooui) }
    </style>
    <![endif]-->
    <style>
    <!--
    /* Font Definitions */
    @font-face
    {font-family:"Rage Italic";
    panose-1:3 7 5 2 4 5 7 7 3 4;}
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
    {margin:0in;
    margin-bottom:.0001pt;
    font-size:12.0pt;
    font-family:"Times New Roman";}
    a:link, span.MsoHyperlink
    {color:blue;
    text-decoration:underline;}
    a:visited, span.MsoHyperlinkFollowed
    {color:purple;
    text-decoration:underline;}
    span.EmailStyle17
    {mso-style-type:personal-compose;
    font-family:Arial;
    color:windowtext;}
    @page Section1
    {size:8.5in 11.0in;
    margin:1.0in 1.25in 1.0in 1.25in;}
    div.Section1
    {page:Section1;}
    -->
    </style>
    </head>
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'>Hi Jason,
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'> 
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'>I just wanted to let you know a lot of my patients =
    are
    frozen again in EDC.  Maybe they should be, I don’t know, I =
    just wanted
    to let you know.
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'> 
    <span =
    style=3D'font-size:
    12.0pt'>Regards,
    <font size=3D6 color=3Dblue face=3D"Rage =
    Italic">Joan =
    Cutillo, <span =
    style=3D'font-size:18.0pt;font-family:
    "Rage Italic";color:blue'>LPN, CCRC
    <span =
    style=3D'font-size:
    12.0pt'>Joan Cutillo, LPN, CCRC
    <span =
    style=3D'font-size:
    12.0pt'>Clinical Research Manager
    <span =
    style=3D'font-size:
    12.0pt'>National Pain Research Institute, =
    LLC
    <st1:address =
    w:st=3D"on">1201 S. =
    Orlando Ave.
    <font =
    size=3D3
    face=3D"Times New Roman">Winter =
    Park,
    Fl, 32789
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'>(407) 622-5766 x1420
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'>Fax 1-561-515-8869
    <span =
    style=3D'font-size:10.0pt;
    font-family:Arial'><a =
    href=3D"mailto:
    <span =
    style=3D'font-size:
    12.0pt'> 
    <!--[object_id=3D#natpain.com#]--><FONT =
    color=3D#0000ff>
    <SPAN =
    style=3D"FONT-STYLE: italic; FONT-SIZE: 12pt">
    <SPAN style=3D"COLOR: =
    black; FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New =
    Roman'">NOTICE: This e-mail (including attachments) =
    is covered by the Electronic Communications Privacy Act, 18 U.S.C. =
    2510-2521, is confidential and may be legally privileged. If you are not =
    the intended recipient, you are hereby notified that any retention, =
    dissemination, distribution or copying of this communication is strictly =
    prohibited. Please reply to the sender that you have received the =
    message in error, and then delete it.<SPAN =
    style=3D"FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt; =
    mso-fareast-font-family: 'Times New Roman'"><?xml:namespace prefix =3D o =
    ns =3D "urn:schemas-microsoft-com:office:office" =
    /></body>
    </html>

    I would suggest you consult your BB documentation and/or their tech support and see if there's a way to send email as plain text rather than HTML. That would avoid the problem regardless of the email client being used to read the messages.
    Alternatively, you could try using Apple Mail (included with Mac OS X) instead of Entourage and see if Mail has better luck rendering the HTML messages your BB is sending.

  • Output HTML to proper page

    I call a servlet from a second window(thirdWin) that was created/opened by the first window(window) in HTML. The servlet writes out HTML to the browser using the following code(note HTML$ is a java class that contains methods of HTML code lines):
    PrintWriter out=response.getWriter();
            HTML$.pageBegin();
            HTML$.tableHeader("Murph");The problem is that the servlet writes/ outputs the HTML code to the third window(thirdWin). I want to call the servlet from the third window and write/output the new HTML to the first window. There must be a way of accomplishing this. One, by setting the browser window directory to the original window(first window) before the servlet is called so that the new HTML gets written to that page, or two, by setting the brower window to the proper window in the servlet before writing the HTML out to the window.
    The following is the code in the servlet that opens the thirdWin. It is a javascript function whose body is a Servlet that has been written it out to the browser page. Do not get confused with me calling it the thirdWin it is acually a second window opened by the opener, I have just called it thirdWin.
    out.println("thirdWin = open('', 'UserName', 'height=300, width=500 scrollbars=yes');");
          out.println("thirdWin.document.write(\"<TITLE>Enter UserName</TITLE>\");");
             out.println("thirdWin.document.write(\"<BODY BGCOLOR=white>\");");
             out.println("thirdWin.document.write(\"<FORM name='showEdit' method='post' action='showEditProfile'>\");");
             out.println("thirdWin.document.write(\"<table><tr><td width=120>User Name :</td><td width=300><input type='text' class='listRow' name='user_name'></td></tr></table>\");");
             out.println("thirdWin.document.write(\"<table><tr><td width=120>Password :</td><td width=300><input type='text' class='listRow' name='user_name'></td></tr></table>\");");
             out.println("thirdWin.document.write(\"<table><tr><td width=120>Search :</td><td width=300><input type='submit' name='showEdit' value='Show Profile'/></td></tr></table>\");");
            /**out.println("thirdWin.document.write(\"<table><input id =\"subfds\" type=\"button\" name=\"Submit5\" value=\"Enter Information\" onclick=\"\"/></table>\");");**/
             out.println("thirdWin.document.write(\"</FORM>\");");
             out.println("thirdWin.document.write(\"</BODY>\");");
             out.println("thirdWin.document.write(\"</HTML>\");");
          out.println("thirdWin.document.close()");

    I have a database, it holds information of a user, my applet interacts with the database to retrieve/write etc. What i want to do is when some1 clicks a button to open a new Internet Explorer page and then output a record from the database. Just like System.out.println(forname + surname + date + score);
    I dont know how to open a new IE and then output the info to it.
    I dont have any code for this part as I havent written it and I dont think there is any value in posting code to retrieve from database. We can just treat them as strings? String forname, surname etc.

Maybe you are looking for

  • Numbers do not accept negative values after upgrading to Snow Leopard

    I have iWork 9 installed in Leopard, and after upgrading to Snow Leopard, Numbers don't accept negative values, e.g. -141. They are defined as text and are aligned left in the cell, even if the cell is defined for numbers. Positive values are defined

  • How to set Value from 1 frame to another ?

    I am having 2 Frame. Frame A and Frame B. Frame A is having a text Field and a button. When i click on the button on the Frame A, how can p*** the value inside the text field of Frame A into a text Field of Frame B which already prepared. Please help

  • Date in where clause without Trunc

    Hi, How handle a date comparision in where clause without trunc. Rightnow I am using it with 'trunc', it is very slow.. Select ColumnA,  ColumnB From Sample Where trunc(created_date,'DD-MON-YY') = '15-NOV-2011'; CREATE TABLE SAMPLE      ColumnA NUMBE

  • How to Group Audiobooks By Book Title Then Track?

    After finally getting my audiobooks to show up in my ipod audiobooks folder, now I have a new problem. I have all 6 Harry Potter books and each chapter within each book is titled with a number like 01 and then the chapter title. The individual chapte

  • Data Transfer Erec and ECC HR

    Hi all, We are using having 2 backend systems 1 for HR other than Erec and another one for erec. Now we have setup the ALE data transfer using Message type HRMD_ABA. In erec we have only ERECRUIT Component deployed in backend,no EA HR or SAP HR compo