msword-like textarea?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bei

    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

    #2
    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@SPAMMERS SUCKtakempis.co m> wrote in message
    news:ueXMpn1ODH A.3020@TK2MSFTN GP10.phx.gbl...[color=blue]
    > There isn't one built-in. However, your question prompted me to think[/color]
    about[color=blue]
    > how such a thing could be done, and I wouldn't be surprised if you[/color]
    couldn't[color=blue]
    > 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[/color]
    buttons[color=blue]
    > over it.
    >
    > HTH,
    >
    > Kevin Spencer
    > Microsoft FrontPage MVP
    > Internet Developer
    > http://www.takempis.com
    > Big things are made up of
    > lots of Little things.
    >
    > "Bei" <karen_lau@hotm ail.com.nospam> wrote in message
    > news:e7uPyN1ODH A.2256@TK2MSFTN GP11.phx.gbl...[color=green]
    > > 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[/color][/color]
    again[color=blue][color=green]
    > > without problem?
    > >
    > > Thanks
    > >
    > >[/color]
    >
    >[/color]


    Comment

    • mike C.

      #3
      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@hotm ail.com.nospam> wrote in message
      news:%235fqeUAQ DHA.1908@TK2MSF TNGP11.phx.gbl. ..[color=blue]
      > 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@SPAMMERS SUCKtakempis.co m> wrote in message
      > news:ueXMpn1ODH A.3020@TK2MSFTN GP10.phx.gbl...[color=green]
      > > There isn't one built-in. However, your question prompted me to think[/color]
      > about[color=green]
      > > how such a thing could be done, and I wouldn't be surprised if you[/color]
      > couldn't[color=green]
      > > find a third-party Server Control that would work like this. Basically,[/color][/color]
      it[color=blue][color=green]
      > > would not be an HTML textarea, but an editable div, with formatting[/color]
      > buttons[color=green]
      > > over it.
      > >
      > > HTH,
      > >
      > > Kevin Spencer
      > > Microsoft FrontPage MVP
      > > Internet Developer
      > > http://www.takempis.com
      > > Big things are made up of
      > > lots of Little things.
      > >
      > > "Bei" <karen_lau@hotm ail.com.nospam> wrote in message
      > > news:e7uPyN1ODH A.2256@TK2MSFTN GP11.phx.gbl...[color=darkred]
      > > > 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[/color][/color]
      > again[color=green][color=darkred]
      > > > without problem?
      > > >
      > > > Thanks
      > > >
      > > >[/color]
      > >
      > >[/color]
      >
      >[/color]


      Comment

      Working...