msword-like textarea?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default msword-like textarea?

    Instead of asp:textarea, does aspx have a built-in control that is a
    textarea but works like a mini-msword with bold/italic function?

    If it has, can the result be saved to sql server and then display it again
    without problem?

    Thanks


    Bei Guest

  2. Similar Questions and Discussions

    1. CF 7 and MSWord
      HI, We recently moved cfom CFMX 6.1 to CF7 and switched from window boxes to UNIX boxes. The first page was working great in CFMX. But it did...
    2. Footnotes - MSWord to InDesign CS
      1054 RAM XP Home ID CS I've gotten endnote conversion from MSWord to InDesign CS figured out, but am unable to place an MSWord document with...
    3. Removing carriage returns from <textarea></textarea> input
      Hiya, I have a form with a <textarea></textarea> to receive user input. This input is then stored in a database and sent by fax... I need to...
    4. editing using msword(similar) via php
      Hi, I saw an ASP kind of a msword type editor that edit's webcontents. And it runs asp :(. I was wondering if php can do similar things like...
    5. ASP to MSWord
      I'm using Response.ContentType="application/msword" to open ASP page in MS Word 2000 from IE6.0. It's works fine on one computer, but on other IE...
  3. #2

    Default Re: msword-like textarea?

    I figure out how to make an editable div. But now how can I submit the
    content of the div as a field of the form?

    Thanks

    "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    news:ueXMpn1ODHA.3020@TK2MSFTNGP10.phx.gbl...
    > There isn't one built-in. However, your question prompted me to think
    about
    > how such a thing could be done, and I wouldn't be surprised if you
    couldn't
    > find a third-party Server Control that would work like this. Basically, it
    > would not be an HTML textarea, but an editable div, with formatting
    buttons
    > over it.
    >
    > HTH,
    >
    > Kevin Spencer
    > Microsoft FrontPage MVP
    > Internet Developer
    > [url]http://www.takempis.com[/url]
    > Big things are made up of
    > lots of Little things.
    >
    > "Bei" <karen_lau@hotmail.com.nospam> wrote in message
    > news:e7uPyN1ODHA.2256@TK2MSFTNGP11.phx.gbl...
    > > Instead of asp:textarea, does aspx have a built-in control that is a
    > > textarea but works like a mini-msword with bold/italic function?
    > >
    > > If it has, can the result be saved to sql server and then display it
    again
    > > without problem?
    > >
    > > Thanks
    > >
    > >
    >
    >

    Bei Guest

  4. #3

    Default Re: msword-like textarea?

    You can save the content in DIV to a hidden input control.

    By the way, with .Net framework 1.1, you need to set ValidateRequest="false"
    in config file or on page, or the HTML tags will cause error.


    "Bei" <karen_lau@hotmail.com.nospam> wrote in message
    news:%235fqeUAQDHA.1908@TK2MSFTNGP11.phx.gbl...
    > I figure out how to make an editable div. But now how can I submit the
    > content of the div as a field of the form?
    >
    > Thanks
    >
    > "Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
    > news:ueXMpn1ODHA.3020@TK2MSFTNGP10.phx.gbl...
    > > There isn't one built-in. However, your question prompted me to think
    > about
    > > how such a thing could be done, and I wouldn't be surprised if you
    > couldn't
    > > find a third-party Server Control that would work like this. Basically,
    it
    > > would not be an HTML textarea, but an editable div, with formatting
    > buttons
    > > over it.
    > >
    > > HTH,
    > >
    > > Kevin Spencer
    > > Microsoft FrontPage MVP
    > > Internet Developer
    > > [url]http://www.takempis.com[/url]
    > > Big things are made up of
    > > lots of Little things.
    > >
    > > "Bei" <karen_lau@hotmail.com.nospam> wrote in message
    > > news:e7uPyN1ODHA.2256@TK2MSFTNGP11.phx.gbl...
    > > > Instead of asp:textarea, does aspx have a built-in control that is a
    > > > textarea but works like a mini-msword with bold/italic function?
    > > >
    > > > If it has, can the result be saved to sql server and then display it
    > again
    > > > without problem?
    > > >
    > > > Thanks
    > > >
    > > >
    > >
    > >
    >
    >

    mike C. 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