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

  1. #1

    Default Textarea

    I am making a simple blog, and was wondering if anyone had any suggestions
    on making a wysiwyg editor. I want to try and make it as much cross platform
    as possible.

    My current thoughts are gearing towards a textarea that isn't wysiwg but
    similar to b2's textarea where tags are added via buttons.

    What are your suggestions out there?


    Amit Varia Guest

  2. Similar Questions and Discussions

    1. Printjob for TextArea
      Below the code snipped :Q: it works fine and print the textarea. But it prints only the visible Textarea and ignores the rest of the text(that...
    2. textArea formatting
      I am using a php html form with data which is loaded from a mysql database. Three of the fields are textareas. The data loads into these fields...
    3. textarea value
      I am trying to collect the value of an HTML textarea. The problem I am having is that I only can get he first line in the textarea. When a user...
    4. 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...
    5. <textarea> bug????
      Simple vbscript,html page loading into access. Input pg posting to Confirm pg, then sending to access. when using; <textarea name="name"...
  3. #2

    Default Re: Textarea

    On Sun, 18 Jan 2004 01:41:51 -0600, "Amit Varia" <spam@amitvaria.com>
    wrote:
    >I am making a simple blog, and was wondering if anyone had any suggestions
    >on making a wysiwyg editor. I want to try and make it as much cross platform
    >as possible.
    >
    >My current thoughts are gearing towards a textarea that isn't wysiwg but
    >similar to b2's textarea where tags are added via buttons.
    >
    >What are your suggestions out there?
    The best I have seen works with IE 5.5+ only (though there is a plugin
    that will make it work with Mozilla/Netscape). Check out:
    [url]http://www.interactivetools.com/products/htmlarea/[/url]


    Tyrone Slothrop Guest

  4. #3

    Default Re: Textarea

    I used that that before, and liked it, but was hoping to have something more
    cross platform. And now I am beging to think that if I want something to be
    really cross platform I am going to have to go with my second idea of a
    textarea where you can add tags from menu. I doubt the WYSIWYG edior is
    going to be possible.

    "Tyrone Slothrop" <ts@paranoids.com> wrote in message
    news:jirk00lv5j5iv2bfrnqqp8o0t22b8u9s7d@4ax.com...
    > On Sun, 18 Jan 2004 01:41:51 -0600, "Amit Varia" <spam@amitvaria.com>
    > wrote:
    >
    > >I am making a simple blog, and was wondering if anyone had any
    suggestions
    > >on making a wysiwyg editor. I want to try and make it as much cross
    platform
    > >as possible.
    > >
    > >My current thoughts are gearing towards a textarea that isn't wysiwg but
    > >similar to b2's textarea where tags are added via buttons.
    > >
    > >What are your suggestions out there?
    >
    > The best I have seen works with IE 5.5+ only (though there is a plugin
    > that will make it work with Mozilla/Netscape). Check out:
    > [url]http://www.interactivetools.com/products/htmlarea/[/url]
    >
    >

    Amit Varia Guest

  5. #4

    Default TextArea

    Is it possible to create a TextArea Item Template inside a datagrid? If so, how?
    Barnabas Yohannes Guest

  6. #5

    Default Re: TextArea

    > Is it possible to create a TextArea Item Template inside a datagrid? If
    so, how?

    Sure.

    <aspataGrid ...>
    <Columns>
    <asp:TemplateColumn>
    <ItemTemplate>
    <asp:TextBox runat="server" TextMode="Multiline"
    Text='<%# DataBinder.Eval(Container.DataItem,
    "SomeColumnName") %>'></asp:TextBox>
    </ItemTemplate>
    </asp:TemplateColumn>
    </Columns>
    </aspataGrid>

    Happy Programming!

    --

    <shameless plug>
    For more information on the DataGrid, DataList, and Repeater controls,
    consider picking up a copy of my latest book:

    ASP.NET Data Web Controls
    [url]http://www.amazon.com/exec/obidos/ASIN/0672325012/4guysfromrollaco[/url]
    </shameless plug>

    Happy Programming!

    Scott Mitchell
    [email]mitchell@4guysfromrolla.com[/email]
    [url]http://www.4GuysFromRolla.com[/url]
    [url]http://www.ASPFAQs.com[/url]
    [url]http://www.ASPMessageboard.com[/url]

    * When you think ASP, think 4GuysFromRolla.com!




    Scott Mitchell [MVP] Guest

  7. #6

    Default textarea

    Is there anyway to have different colors, fonttypes, bold, etc. in the text in
    a text area? I have done it with using the html tag, but it would seem logical
    that one should be able do this in a normal flex textarea.

    Thanks

    thephantom6969 Guest

  8. #7

    Default Re: textarea

    Not sure exactly what you mean, but textarea has an htmlText property that can
    work with a subset of html-ish tags. Otherwise, if you are talking about
    editing, then you should take a look at the RichTextEditor component.

    slaingod Guest

  9. #8

    Default Re: textarea

    Lets say I have some text in the text area. Can I change the color of one word in the text area or could I underline a word?

    thephantom6969 Guest

  10. #9

    Default Re: textarea

    You should be able to do that by setting the htmlText as mentioned. If you
    meant for the user to be allowed to edit the text, you would be better off
    using RichTExtEditor and hiding the control bars for instance, as I imagine as
    soon as the user edited the TextArea you might lose the underlines, tho I'm not
    sure.

    If for some reason you absolutely have to use TextArea, then you can probably
    accomplish what you want by detecting the change event on the TextArea and
    reapplying the formatting as needed.

    Say you are writing a word processor with dictionary underlining for
    misspelled words: You would allow the user to type their text, and then after
    each letter typed, you could look for changes and apply the underline as
    needed. But using RichTextEditor seems like it would be a lot easier.

    slaingod Guest

Posting Permissions

  • You may not post new threads
  • You may not 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