Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5978735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:33:34+00:00 2026-05-22T21:33:34+00:00

User types text into a multi-line text box in the browser Data is stored

  • 0
  1. User types text into a multi-line text box in the browser
  2. Data is stored as part of an XML snippet in a SQL Server xml column
  3. XML snippet is later incorporated into a larger xml document
  4. Document is processed via XSLT into an HTML email
  5. Recipient is expected to see the original line breaks

I tried:

  • CDATA (removed by SQL)
  • <PRE> tag in the output around the comments and encoding of the NL character
  • encoded <BR> tag in the data (does not get decoded in the HTML)

Can this be done without rearchitecting everything?

Per request in the comments, here is the actual code:

The XSL

<TD>
    <xsl:value-of select="//MemoComment"/>
</TD>

Variations of input data into the XSLT

  1. <MemoComment>Previous job: Associate, Boston<br/>Test1<br/>Test2</MemoComment>
  2. <MemoComment>Previous job: Associate, Boston &amp;#xA;Test1 &amp;#xA;Test2</MemoComment>
  3. <MemoComment>Previous job: Associate, Boston&amp;lt;br/&amp;gt;Test1&lt;br/&gt;Test2</MemoComment>

Corresponding XSLT Results

  1. <TD>Previous job: Associate, BostonTest1Test2</TD>
  2. <TD>Previous job: Associate, Boston&amp;#xA;Test1&amp;#xA;Test2</TD>
  3. <TD>Previous job: Associate, Boston&amp;lt;br/&amp;gt;Test1&lt;br/&gt;Test2</TD>

None of which renders correctly in Outlook.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T21:33:34+00:00Added an answer on May 22, 2026 at 9:33 pm

    Reason for your problem was that you used <xsl:value-of>

    <TD>
        <xsl:value-of select="//MemoComment"/>
    </TD>
    

    when you actually needed <xsl:copy-of>

    <TD>
        <xsl:copy-of select="//MemoComment/node()"/>
    </TD>
    

    <xsl:value-of> only selects the string value of the selected node. What you actually wanted is to copy of whole node including the elements that it contained. Then you can save the data as a formatted XHTML snippet without the need of element syntax escaping (format number 1 on your input list).

    Usage of disabe-output-escaping="yes" is often discouraged because it can lead to outputting malformed XML. Also all XSLT processors don’t implement this feature since it actually takes effect only when the document is serialized, and might not have any effect if the output document is passed on from the processor as a data structure.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

if a user types in an input say 3 into a text box three
I have a (single line) TextCtrl. The user types data into this. When they
I have a form where a user types paragraphs into a text area and
I've got a textarea with a fixed height. When the user types text into
I have an INPUT text box. As someone types into the INPUT text box,
I am getting data though a PHP text box and inserting it into a
Displaying Type here to ... until the user enters text into a TextBox is
Using C#, when a user types a text in a normal textbox, how can
How do you manipulate text inside of a textarea as the user types in
I want to have a text box that the user can type in that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.