Server Behavior - Dynamic Text

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

  1. #1

    Default Server Behavior - Dynamic Text

    Hi, all

    This may be something simple, not sure, as I continue to search for an answer.
    I have some text in a SQL database that I'm displaying using Dreamweaver
    MX2004's Server Behavior - Dynamic Text. The text pulls in just fine, but it's
    just one big chunck of text. I am sumitting the text to the database via an
    update form I created in Dreamweaver (I'm trying to create a web app so that my
    client can update her own content and I'm testing it) and when I enter the text
    I have four separate paragraphs, however it is displaying it as one big
    rambling paragraph. Can anyone advise me on what I am missing? Please and
    thank you!

    John

    BurritoVictim Guest

  2. Similar Questions and Discussions

    1. Server Behavior
      Hello, I installed a mxp file that i got from DMXzone and in Extension Manager said that i have to go to the Server Behaviors menu:...
    2. Dynamic text box within dynamic movie clip
      I'm having a similar problem. On mine I noticed that although the text doesn't show and the border doesn't show, the cursor changes appropriately...
    3. Dynamic attaching of behavior
      I have created a behavior script during runtime which I want to attach to a sprite. But I just can't figure out how to get the darn thing attached....
    4. [DW MX] or [DW4] Dynamic menu and image behavior
      Hi Dave, Take a look at the Layer Genie extension at DMXzone. It will help you create cascading menus with links or images....
    5. Strange Text/XML Behavior
      I have a strange problem that I spent quite some time trying to debug last night. I'll try and explain this as well as I can. I have a simple...
  3. #2

    Default Re: Server Behavior - Dynamic Text

    John,

    Check out this extension/suite:

    [url]http://charon.co.uk/content.aspx?CategoryID=11[/url]

    Then use the "Preserve Whitespace" function.

    Mitch




    "BurritoVictim" <webforumsuser@macromedia.com> wrote in message
    news:d4b4p4$i2p$1@forums.macromedia.com...
    > Hi, all
    >
    > This may be something simple, not sure, as I continue to search for an
    answer.
    > I have some text in a SQL database that I'm displaying using Dreamweaver
    > MX2004's Server Behavior - Dynamic Text. The text pulls in just fine, but
    it's
    > just one big chunck of text. I am sumitting the text to the database via
    an
    > update form I created in Dreamweaver (I'm trying to create a web app so
    that my
    > client can update her own content and I'm testing it) and when I enter the
    text
    > I have four separate paragraphs, however it is displaying it as one big
    > rambling paragraph. Can anyone advise me on what I am missing? Please
    and
    > thank you!
    >
    > John
    >

    mitchel Guest

  4. #3

    Default Re: Server Behavior - Dynamic Text

    Thanks, Mitchel - I'm using ASP.NET (aspx) pages and it doesn't seem to work with them. Is it ASP only? If it's any help to further expound, I'm using VB.
    BurritoVictim Guest

  5. #4

    Default Re: Server Behavior - Dynamic Text

    Found the answer - so simple actually (sigh). Added Replace(Chr(13), "<br>")
    to my dynamic text line and it solved everything. Like this:

    <%# dsMysite.FieldValue("main", Container).Replace(Chr(13), "<br>") %>

    Yay!

    BurritoVictim 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