new line in recordset

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default new line in recordset

    When I display text from a memo field in an Access db, the sentences run
    together instead of displaying new lines where the users hit Enter. How do I
    get the new lines? I know it is possible because I can create the same
    application in CodeCharge and it will create the new lines.

    kmiracle Guest

  2. Similar Questions and Discussions

    1. Forced line break changes previous line endings
      Gang-- Give this script a try. It's quite experimental (i.e., use at your own risk), but in my tests it actually works to "freeze" the line...
    2. text line spacing and line tool
      1.) Using InDesign 2.0.2 - When aligning text (in one particular text frame)to a base grid, the text will always skip one line even though the base...
    3. DRKv5 3D Line Chart line width, rendering problems
      I am using the DevNet Resource Kit Version 5 3D Charting components. The line chart component has a minimum line width parameter, but the minimum...
    4. RecordSet.Move or RecordSet.AbsolutePosition??
      Hi, I'm trying to use either one of these methods to position the cursor in a specific position inside a recordset, but neither one seems to...
    5. [PHP] Unix end of line versus windows end of line
      Hi, I use PHP with apache on two systems.. (linux and windows) when I use PHP on linux, it is ok.. I get Unix end of line, when I write to the...
  3. #2

    Default Re: new line in recordset

    <%=Replace(rsCards.Fields.Item("Review").Value,chr (13),"<br>")%>


    --
    __________________________________________________ __________________
    UltraSuite Extension Packages: [url]http://www.ultrasuite.com/[/url]
    The *most popular* Suites of DMX 2004 and DMX Server Behaviors
    for ASP, ASP.Net, ColdFusion, JSP, and PHP_MySQL
    __________________________________________________ __________________


    J.S. \(UltraSuite\) Guest

  4. #3

    Default Re: new line in recordset

    Thank you very much, that worked great. (it seems so simple after seeing it, I
    feel kinda stupid - wait, maybe I am!)

    Originally posted by: Newsgroup User
    <%=Replace(rsCards.Fields.Item("Review").Value,chr (13),"<br>")%>


    --
    __________________________________________________ __________________
    UltraSuite Extension Packages: [url]http://www.ultrasuite.com/[/url]
    The *most popular* Suites of DMX 2004 and DMX Server Behaviors
    for ASP, ASP.Net, ColdFusion, JSP, and PHP_MySQL
    __________________________________________________ __________________






    kmiracle Guest

  5. #4

    Default Re: new line in recordset

    Or you could install the KTML extension if you want a more powerful way to edit the text area.

    Cheers

    Chuck
    chuckomalley Guest

  6. #5

    Default Re: new line in recordset

    > Thank you very much, that worked great. (it seems so simple after seeing
    > it, I
    > feel kinda stupid - wait, maybe I am!)
    Not knowing something is not stupid, my friend. Only not asking is but then
    you asked. Glad it worked for you.

    --
    __________________________________________________ __________________
    UltraSuite Extension Packages: [url]http://www.ultrasuite.com/[/url]
    The *most popular* Suites of DMX 2004 and DMX Server Behaviors
    for ASP, ASP.Net, ColdFusion, JSP, and PHP_MySQL
    __________________________________________________ __________________


    J.S. \(UltraSuite\) Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139