Link to home
Start Free TrialLog in
Avatar of dkim18
dkim18

asked on

Looking for a rich text editor(textbox) like in SharePoint?

Hi,

I think answer is no but let me ask.
I am looking for a rich text editor instead of a regular text box in asp.net 2.0 to keep formats of the text.
I am using the asp.net 2.0 textbox but text always shows in a single line.
I want something like a textbox in the SharePoint page.

Here is the problem. I am not able to use other third party tools or framework.
All I have are VS 2005 (no vs 2008 yet) and  .net framework 2.0 and 3.5.

I do have the SharePoint site. So  is it possible to create something like that with what I have.
Thanks.
Avatar of Ashley Bryant
Ashley Bryant
Flag of United States of America image

You can change the size of the textbox quite easily (see below).  If you want to make some sort of rich text editor though...whew...that's a tall order.


<asp:TextBox id="TextBox1" runat="server"
    Width="300px" 
    Height="100px" 
    TextMode="Multiline" />

Open in new window

Just out of curiosity, why can't you use any third-party solutions?  There are quite a few of them out there that are free.

RTE (Rich Text Editor ASP.NET Control)
FreeTextBox
AjaxControlToolkit has an HTML Editor.
Avatar of dkim18
dkim18

ASKER

Just not allow to use them at this time.

Anyway, by any chance is ajaxcontroltoolkit a part of default AJAX framework?
Thanks for your input.
No, it's not part of the existing framework.  It's a Toolkit that you can download from Codeplex.  Codeplex is a site owned and run by Microsoft that only distributes open source stuff.  RTE and AjaxControlToolkit are both available there.
ASKER CERTIFIED SOLUTION
Avatar of Ashley Bryant
Ashley Bryant
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dkim18

ASKER

Thanks a lot.