Good Simple Wysiwyg Text Editor To Use With .net Mvc?
Jan 18, 2010What is a good and simple wysiwyg text editor to use with asp.net mvc I only need the bold and insert a link functionalities.
View 3 RepliesWhat is a good and simple wysiwyg text editor to use with asp.net mvc I only need the bold and insert a link functionalities.
View 3 Repliesiam looking for a good free WYSIWYG Editor. In the past i use the fckeditor. the new currently version ckeditor is not bad, but i have no image browsing or uploading. you need to buy the ckfinder. need a editor that is simple to include in my webform with image browsing and uploading.
View 7 RepliesI need just a basic functions:bold textheader textlist (numbered)undo and redoinsert imagechange background of editor don't need to let the user directly change html code. There I have found some editors that supports all those functions except inserting images.
View 4 RepliesWYSIWYG editor when it comes to editing complex HTML pages generated from ASP.NET, PHP, GWT or anything else. I've tried a lot of WYSIWYG tools, but after a certain point I always end up with manually editing the HTML source code or CSS to fix different issues. The editors I've tried are never compatible with the ASP.NET/PHP/etc code I'm writing.Edit: I have used Visual Studio for a few years to do ASP.NET development. After a while, it always comes to the point where I can't even open the pages and user controls because they rely on so many things which aren't available in debug time.
View 5 RepliesI'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 one free wysiwyg html editor in one of the website I am developing. It's commercial website which I am developing for a company.Could you please suggest me from your experience the best free available wysiwyg HTML editor for web.FYI - Website is build with ASP.Net 4.0, C#.Net
View 2 RepliesI am using an open source wysiwyg editor on one of my asp.net web pages to create news pages... On one page It is put into place like this: Registered at top of asp.net web page...
<%@ Register Src="~/WebUserControls/HTMLEditorControl.ascx" TagName="HTMLEditorControl" TagPrefix="uc2" %>
<div>
<uc2:HTMLEditorControl ID="HelpTextBox" runat="server" />
</div>
In the code behind there is a Save method that basically saves the above editor data using the id:dataset.column = htmlTextArea.GetHTML ;When I try to bring up the page with the editor, I get the error: 'WYSIWYG' is undefined at Line 900, which is:
<script language="javascript" type="text/javascript" >
WYSIWYG.attach('ctl00_ContentPlaceHolder_HelpTextBox_htmlTextArea');
</script>
Is there a WYSIWYG editor that is able to format code?
So when anyone inserts code into the wysiwyg editor box, it would properly format it?
can i add html page/template into tinymce or fckeditor or WYSIWYG editor
View 4 RepliesI 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 was looking for Good/Simple webservice which can be consumed using asp.net but i can't a find a free webservice that can be used with asp.net..
View 1 RepliesI'm using "open WYSIWYG" editor which can downloaded from "http://www.openwebware.com/" in my asp.net application. Which can be applied the style by using the following
<script language="javascript1.2">
WYSIWYG.attach('<%=txtMessage.ClientID%>');
</script>
It will add the styles there is no problem on this . My question is, i have a "Required field validator" for "txtMessage" text box(which is a asp.net server control). After attach the style to "txtMessage" the required field validator not functioning well.If i remove or comment the above script tag means it works fine. I don't knw whats the reason behind this.
I 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 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 RepliesHow about adding a helper that will create a simple HTML editor, like the one I am using to write this post? That would be completely awesome, and would just about make this good little tool a GREAT tool.
View 4 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 Replieshow to show the quick changing text as like shown in text editor of mobile phone(While message writing it shows no of characters left)
View 5 RepliesI have a Rich Text Editor on a web page and I need to copy the contents of the editor, just the raw text part, ignoring any behind the scenes markup that might be there.
If I use the folllowing code I get everything, including markup
this.Textbox1.Text = this.CEditor.Text;
Is there a way in asp.net to just extract the raw text part, ignoring the markup?
Is there a way to use the firefox (or chrome or any other good browsers) rendering engine to convert html (as a text string) to an image?I have full access to the server I'm using, so no limitations there.
View 2 RepliesAccording to thread [URL] ....
I use simple text for lable that was in datalist and bind from database
now I want do it for TextBox==>txtDes that is not in datalist and I bind it from database so I wrote below code for textbox but it didn't work...
string data = Request.QueryString["id"].ToString();
SqlCommand _cmd = new SqlCommand("ViewStore", _cn);
_cmd.CommandType = CommandType.StoredProcedure;
_cmd.Parameters.AddWithValue("@id", data);
_cn.Open();
SqlDataReader _dr = _cmd.ExecuteReader();
[Code] ....
In insert.aspx page I used Ckeditore to insert data in Product info table in Description column
it insert data like bellow
Id name description
1 sara <p>Â Â <u><strong>Test</strong></u></p>Â
2 jack <p dir="rtl">Â Â <u>Test.</u></p>Â
 and I bind 2 lable from Description column in ViewInfo.aspx page
1-lblTitle
2-lblDescription
I want in lblTitle it show data from table exactly like what I Entered in Ckeditor i.e
like above table it show Test  when I bind lbltitle it show correctly...
Now I want when I bind lblDescription from Description Column it show data in simple type
I mean I want it show Test with out underline and doesn't bold it...
I need a text editor that I can add as a component to my ASP.net web application, but I need an extra feature in it, it's watermarking.
View 2 Repliesi have a form to insert record to sqlserver and one field i am using ajax text editor but i can't get it value by C# . when i press button to insert it never has error but that field is no data it just null.i think it may not know html codei wonder if u can share me some possible solution.
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
[code]...
I need Free Rich Text Editor to use on ASP.NET.
View 2 Repliesis 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?