component like rich textBox
-
i want to write a Rich Textbox Component for web applications of asp.net 2.0,which i can frequently use in my future projects,like emailSystem etc..As Asp.net 2.0 doesnot contain RichTextBox control,like windows Applications. so the point where i m confusing is that which project type should i select in Visual Studio 2005,either Windows Control Library,or web application project,which i can reference to my future projects..
-
i want to write a Rich Textbox Component for web applications of asp.net 2.0,which i can frequently use in my future projects,like emailSystem etc..As Asp.net 2.0 doesnot contain RichTextBox control,like windows Applications. so the point where i m confusing is that which project type should i select in Visual Studio 2005,either Windows Control Library,or web application project,which i can reference to my future projects..
it depends. A rich text like control is going to use a lot of javascript, OR it's going to not be a native web control. I'd say your best bet is to look for controls that already exist, the ones that do, use javascript and thus do not require special permissions from the end user to run.
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.
-
i want to write a Rich Textbox Component for web applications of asp.net 2.0,which i can frequently use in my future projects,like emailSystem etc..As Asp.net 2.0 doesnot contain RichTextBox control,like windows Applications. so the point where i m confusing is that which project type should i select in Visual Studio 2005,either Windows Control Library,or web application project,which i can reference to my future projects..
Take a look at FreeTextBox, it's available from: http://www.freetextbox.com. Hope this helps Tom