Web Forms :: How To Get An Editor
Jan 25, 2010how I can get an editor like this :
-------
Simple and free .. !
how I can get an editor like this :
-------
Simple and free .. !
I went through the documentation and looked at the asp.net/webmatrix pages but could not find a RichTextEditor.
Is there one built into WebMatrix or can I just use the AjaxToolkit Html Editor or another 3rd party editor?
I am building an asp.net site in which I need to have editor text boxes in different forms. I am planning to buy cute editor license but just want to check whether there are any alternatives available in open source.
View 2 Repliesi need to create a html editor for use to every page to update the web page content. By right, the html editor only can seen by administrator. So , i should create a custom web part/user control to update different table of database or create a custom editor zone better? how can we do it just like the share point html editor web part?
View 3 Repliesthere is any free Rick Text Editor server control available for web, note that I am not asking about DHTML controls like FreeTextBox and similar.
View 9 RepliesI have an Editor control on my page and the user can go in use it hit save and that all works.
In another part of the page I have a simple dropdown to select a note and view it. When you push view it loads the text which was entered in via the editor control.
If the user used an order or unordered list. The text shows up but not the list part.
So if they did this:
Example
ThisAnd this
What is displaying is
Example
This
And This
Without the bullets. Same for the numbers.
I have it going to a literal control which should render the html, but it doesn't.
I was wondering if there was an easy way to change the output generation properties of the HTML editor.
I need to change it from the current XHTML standard (spans, etc) to legacy styles; <b>, <u>, <i>, etc.
I'm currently using a WYSIWYG editor , what I'm wanting to do is give the admin the ability to drag or add asp.net button or label to the editable area, unfortunately when I try to add say a button or asp.net label at present the WYSIWYG editor sees it as html text and not as an asp.net control. Does anyone know how to get around this or if there is an existing WYSIWYG editor that allows asp.net control to be added to the editable area?
View 3 RepliesI want to use an editor contorl for my website and i want tit exactly like this Website Can you please tell me which is the editor it is??
View 1 RepliesI want my Website to have one Editor Contorl to post articles and stuff...
Whice is the best contol to use ...
Editor control are some thing which converts the user actions into HTML like the contorl which have bold,italic and underline and some link insertion...
Which is the best one to use?
is there any rich text editor for asp.net 2.0? i think only 3.0+ versions support ajax.
what do i do with 2.0?
i need to use a ediotr in my asp.net web application which has few additional featuresi have checked with almos all online editors avaliable . one of them has the features i need but its not a free editori need to make such a editor for using in my application.
View 3 Repliesi want to make a notepad like editor in my asp.net using c#. i am using a note pad and some buttons to create coding for cut copy paste bold italics etc...
i dont want to have a menubar for that.
i want to create a small replying form as you are seeing it while replying to me.
i want exactly the same format.
want a toolbar on the top and a message body below. where we can type as i am currently doing. and can edit any formatting through that toolbar as it is here just above this message space.
I have tinymce .net control on my .net webform and the basic setup works a treat. My code behind can see the html generated my tinymce via the TextArea1.Value property. However as soon as I set the mode to textareas the value is suddenly always empty! The problem is that if the mode is not set to textareas the tinymce editor is only in simple mode and does not offer all the features.
How do I get this to work?
how can I move whole panel to fckeditor?
View 14 RepliesI use the option for creating text as Hyperlink in that editor.The problem I am facing now is when I try to display that hyperlink text on my asp:TextBox in multiline mode, it is not displayed as a Hyperlink. It is displayed as plain text. I got a reply from Telerik that I cannot display text as hyperlink in my asp:Text box. Do anyone know is there any other controls in ASP.NET or Telerik to display text as Hyperlink
My objective is to take the whole content of the RAD editor and display that on a asp:TextBox control (in multiline mode) and when the user clicks on a Hyperlink(If any), open that link in another window.
I am using FCK Editor (version 2.6.3.22451) in my asp.net 3.5 application.
While using upload option in the insert image modal popup, is it possible to upload the file to an external server, e.g. outside my virtual directory (anyhow, for example using FTP credentials).
I want to display a Text File in the browser.The text file must be viewable along with MS word functionality (like the inclusion of a ruler for indentation etc.)How can I do this?
View 2 RepliesI need a text editor close to this , any one will be okay
View 11 RepliesI am developing a large dent in my forehead trying to figure out why my server control will not display the property editors, both image and URL navigation. I have done everything that they say on the different sites but the editors will not show up, here is my code:
#Region "Imports"
Imports System
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Text
[Code]....
Is there an ASP.NET editor control similar to the editor for word or even this forum availble?
View 1 RepliesI am using TinyMCE html editor in my web application with Asp.net 3.5 and C#. If I enter a path like http://video.test.com/test.flv in url attribute to add video in my page content, the leading slash gets stripped, and becomes "http:/video.test.com/test.flv".So that the move could not get loaded. On button click event the slash gets removed. Button click is necessary for me to save the page content into the database.
View 3 RepliesI Want to apply the text editor in my aspx page . i search some open source editor .but there is not provioded sufficient information how to implement..if any text editor in open source plz suggest me which is easy to use .. and provide me full information for installation
View 7 Replies Are there any free rtf editor control with spellcheck embedded. I am using VS 2008.
i have integrated the template into the tiny using the following code
template_templates: [Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
{ title: "red", src: "Template/redyellow/Website/about.html" },
{  title: "Law", src: "Template/Law/index.html" },Â
{Â Â title: "Business", src: "Template/Blue_Business/index.html"Â Â },Â
{  title: "asubtleorange", src: "Template/asubtleorange/index.html" },Â
{  title:" 110100013",  src: "Template/110100013/index.html"  } ]
But I need it with file upload control... like the image is added with tiny editor using the following code
 if (FileUpload1.HasFile) { Â
string FileName = System.IO.Path.GetFileName(FileUpload1.PostedFile.FileName);Â
FilePath = "editor_image/" + FileName;Â Â Â
FileUpload1.SaveAs(Server.MapPath(FilePath));Â
editor.Text += string.Format("<img src = '{0}' alt = '{1}'/>", FilePath, FileName);Â
}
like the above code i need to add the html/style sheet template.