Ask a Question related to ASP.NET General, Design and Development.
-
Neo Chou #1
How to use RichTextBox in ASP.NET?
Greetings!
I'm trying to make my ASPX page able to process WORD format document. I
learned that RichTextBox might help me, but I can't use it either by adding
it to my Web Control list or by writing "<asp:RichTextBox id="c1" />" in the
ASPX file. The error message shows "Cannot find RichTextBox in the
namespace of web controls" (something like that). Is there any way to add
RichTextBox in ASPX file? Or where can I find a substitute?
Thanks in advance!
Neo
Neo Chou Guest
-
borderless, vanilla RichTextBox?
Hi all; i'm working with the RichTextBox and i'm trying to get rid of everything around the TextArea completely, the controls, the title, the... -
hide RichTextBox controls + title, etc.
hi all, i'm using the mx:RichTextEditor and i've hidden the controlBar, but is it possible to just get the actual text area, without the title... -
Scott M. #2
Re: How to use RichTextBox in ASP.NET?
A RichTextBox control is an ActiveX control, which is not native to .NET.
Use the standard Web Forms TextBox control and you should find similar
functionality. If you must use the RTB, you can right click on the ToolBox
and add it From the COM/ActiveX category.
"Neo Chou" <neochou@hotmail.com> wrote in message
news:eLfXPeWVDHA.3148@tk2msftngp13.phx.gbl...adding> Greetings!
>
> I'm trying to make my ASPX page able to process WORD format document. I
> learned that RichTextBox might help me, but I can't use it either bythe> it to my Web Control list or by writing "<asp:RichTextBox id="c1" />" in> ASPX file. The error message shows "Cannot find RichTextBox in the
> namespace of web controls" (something like that). Is there any way to add
> RichTextBox in ASPX file? Or where can I find a substitute?
>
> Thanks in advance!
>
> Neo
>
>
Scott M. Guest
-
Steve C. Orr, MCSD #3
Re: How to use RichTextBox in ASP.NET?
You might consider a third party solution such as these:
[url]http://www.textboxpro.net/demo/default.aspx[/url]
[url]http://www.richtextbox.com/richtextbox/[/url]
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Neo Chou" <neochou@hotmail.com> wrote in message
news:eLfXPeWVDHA.3148@tk2msftngp13.phx.gbl...adding> Greetings!
>
> I'm trying to make my ASPX page able to process WORD format document. I
> learned that RichTextBox might help me, but I can't use it either bythe> it to my Web Control list or by writing "<asp:RichTextBox id="c1" />" in> ASPX file. The error message shows "Cannot find RichTextBox in the
> namespace of web controls" (something like that). Is there any way to add
> RichTextBox in ASPX file? Or where can I find a substitute?
>
> Thanks in advance!
>
> Neo
>
>
Steve C. Orr, MCSD Guest



Reply With Quote

