Keeping paragraphs from memo fields

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

  1. #1

    Default Keeping paragraphs from memo fields

    Hi all

    I'm pretty new to Dreamweaver, I've been using Drumbeat 2000. In Drumbeat
    there are contracts that are applied to a text field, change CRLF to BR and
    Change BR to CRLF, which will take text from a memo field and have it properly
    display as HTML. Is there anything like that for Dreamweaver, or can someone
    show me how to do it?

    Thanks!

    bcunning989 Guest

  2. Similar Questions and Discussions

    1. updating access memo fields
      How can one use Flash to update an Access Memo field and retain the whitespace a user inputs? See Paul Gubbay's Time Entry Application: Sample...
    2. Exporting Memo Fields to Excel
      Hi There I have a page that exports membership information from coldfusion into excel and all works very nicely apart from the few fields that...
    3. Using UNION with Memo fields
      This worked a few months ago, but since we did our coldfusion upgrade it's hosed. I'm doing a help page for our company (for various fields in our...
    4. Memo fields in MS Access
      Is there anyone that really uses DB2 8.1 memo fields in MS Access? I'm experiencing a lot of problems with them. I tried both using LONG VARCHAR...
    5. Memo fields
      Sounds like Extend mode. Next time this happens, see if EXT appears in the status bar. You've probably bumped F8. Esc is supposed to cancel...
  3. #2

    Default Re: Keeping paragraphs from memo fields

    type the text in DW design view, copy in code view and paste in your
    memo field

    bcunning989 wrote:
    > Hi all
    >
    > I'm pretty new to Dreamweaver, I've been using Drumbeat 2000. In Drumbeat
    > there are contracts that are applied to a text field, change CRLF to BR and
    > Change BR to CRLF, which will take text from a memo field and have it properly
    > display as HTML. Is there anything like that for Dreamweaver, or can someone
    > show me how to do it?
    >
    > Thanks!
    >
    Manuel Socarras Guest

  4. #3

    Default Re: Keeping paragraphs from memo fields

    Thanks for the reply Manuel, but that won't work. This is text coming from a
    memo field in an access database into an application I've done in dreamweaver.
    I'm trying to convert the crlf from access into the html <br> as drumbeat could
    do.

    bcunning989 Guest

  5. #4

    Default Re: Keeping paragraphs from memo fields

    i assumed you were able to create the DB, did you inherit it already
    fullfilled?

    bcunning989 wrote:
    > Thanks for the reply Manuel, but that won't work. This is text coming from a
    > memo field in an access database into an application I've done in dreamweaver.
    > I'm trying to convert the crlf from access into the html <br> as drumbeat could
    > do.
    >
    Manuel Socarras Guest

  6. #5

    Default Re: Keeping paragraphs from memo fields

    It's not built in, but I believe there are extensions on the Exchange.
    It's actually pretty easy. You mentioned Access, so here's the ASP
    solution:
    <%=Replace(yourRS.Fields.Item("yourMemo").Value,ch r(13),"<br>")%>

    "bcunning989" <webforumsuser@macromedia.com> wrote in message
    news:d5o8he$cdq$1@forums.macromedia.com...
    > Hi all
    >
    > I'm pretty new to Dreamweaver, I've been using Drumbeat 2000. In Drumbeat
    > there are contracts that are applied to a text field, change CRLF to BR
    > and
    > Change BR to CRLF, which will take text from a memo field and have it
    > properly
    > display as HTML. Is there anything like that for Dreamweaver, or can
    > someone
    > show me how to do it?
    >
    > Thanks!
    >

    Lionstone Guest

  7. #6

    Default Re: Keeping paragraphs from memo fields

    Maybe one of my extensions will help?
    Cheers,
    Rob
    [url]http://robgt.com/[/url]
    Tutorials: [url]http://robgt.com/tutorials/index.asp[/url]
    Extensions: [url]http://robgt.com/products/index.asp[/url]


    RobGT 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