I think you have to go for RichTextBox for this.
But there is no RichTextBox available in asp.net.
There are many things the can be done with a rich text control. You can create a word processor that has multiple features including put bullets, automatic save & load, and being able to superscript & subscript. All of these and more will be shown in here.
Because most visual basic programmers already know the main functions of the regular textbox, I'll skip that part of the rich textbox control. The main function I use the rich textbox is to save and load files. The rich textbox makes very simple to create save and load files. There are three parts to a rich textbox, the textbox, the file path, and the file type. You don’t need to specify the file type if the file path already contains it.
Save a file:
Object.Save (FilePath, FileType)
Load a file:
Object.Load (FilePath, FileType)
As you can see loading and saving are very similar and very simple. This saves everything including text, color, and bullets. Next is the different ways of editing the format.
Go through this link to, it is interesting
http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=1636&lngWId=10
http://www.textcontrol.com/themes/asp-dotnet-rich-text-box/ADWORDS.htm?gclid=CPjU0Jb7xpMCFR4sagodyGPuCA
Also go thr these links;
may be these links will help you to build richtextbox;
http://www.asp.net/learn/ajax-videos/video-155.aspx
http://asp-net-rich-text-box.qarchive.org/
http://www.vclcomponents.com/ASP_NET/Content_Management/Rich_Text_Box-info.html
http://www.dart.com/pwtb.aspx
http://www.textcontrol.com/themes/asp-dotnet-rich-text-box/ADWORDS.htm?gclid=CKKI5bje_5MCFRTuegodVUZZXA
http://www.freevbcode.com/ShowCode.asp?ID=4544
http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=1636&lngWId=10
Best Luck!!!!!!!!!!! Sujit. |