I don't seems to be able to get display the value in the FCKEditor? I have checked that my DB indeed stored some HTML values in nvarchar datatype fieldThis is my code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
Dim dr As SqlDataReader
I'm trying to use a required field validator on a fckeditor inside a formview edit template, but it's not working and I can't seem to get any google searched methods on this to work.
I want to write article in page, when click button at end of the page go to fckeditor page and found the article text inside the editor then makes any changes in text (font , size....) and click save button to save the article in previous page after change..
I have used FCKeditor in my project. It worked fine before i add url rewriting in my project.Now i can not upload images from my fckeditor properly.I am using Intelligencia.UrlRewriter for url rewriting in asp.net
Q: I want to ask how to use FckEditor in my asp.net web application I download the the compressed file from their site http://ckeditor.com/download and extract all the files into a folder in my web application but I don't know what can I do after that..
I have added fckeditor in my asp.net(vb) web site but i don't know how add pages to update at run time? 1) How to add .aspx pages in fckeditor so that i can edit an create new pages or tabs.
When i use RequiredFieldValidator for Validation FCKEditor ,The first time that the form gonna submit, RequiredFieldValidator prompt (ErrorMessage) and indicate that FCKEditor is empty ,while it isn't .Again if you try to submit the form,It's OK and there is no problem .At this case user have to hit the submit button twice So i have to disable Client Side validation and validate form just in Server Side code which is not good.
i am using FCKEditor but i dont want all the buttons that are in the toolbar area i want only some of them is there any way to hide them using css or javascript or in any other way.
I need to modify the open-source FCKeditor (not CKeditor) to allow users to select multiple files and upload them in one go (as opposed to selecting them one at a time).
I've found a way to provide the functionality - there are ready made components that can be used.
But how do I add custom buttons with custom functionality in FCKeditor.
I have to preload the 9 instances of fckeditor on the page for entering the records . It is taking lot of time. the preload time can be minimized. this is the way i am doing it . They are being created dynamically
This works fine in my VS2008-based web application. However, when I deploy it to a Virtual Directory in IIS, it looks for the FCKEditor files (e.g. javascript, stylesheets, etc...) in the /fckeditor folder, not in the /MyVirtualDir/fkceditor.
I've tried changing the BasePath to ~/fckeditor/, but then it won't work on my dev machine.
What is the right way to go, so that the FCKEditor maps onto the right directory. In my project the fckeditor directory is right off the root.
I want to save fckeditor value in cookies. And fckeditor have value as " Hi <name>, and so on .." I am using following code :
My Code:
Save: private void CookiesCreated() { //Create a new cookie, passing the name HttpCookie cookie = new HttpCookie("BodyText"); //Set the cookies value cookie.Value = Server.HtmlEncode(fckeditor.Value); //Set the cookie to expire in 1 minute cookie.Expires = DateTime.Now.AddMinutes(1); //Add the cookie Response.Cookies.Add(cookie); } Retrieve: if (Request.Cookies["BodyText"] != null) { fckeditor.Value = Server.HtmlDecode(Request.Cookies["BodyText"].Value); }
But i am uncomfortable to get the original value, i am getting only (<) this.
I have use fckeditor in asp.net. When user open the page containing fckeditor in Chrome. User can resize the text area of fckeditor. I want to prevent this.i.e.user should un-enable to resize the text area.
I am having problem retrieving html text value within FCKeditor upon submit form. My submit mvc model alway null value.Do anyone how retrieve html text value withing FCKeditor and put into mvc model upon form submit?
i have a gridview binded with data when i hover mouse to row i want to display a image button to display date ,and when i click the button i want to display calender control for choose date, and next step after i choose date it will be must insert into database. and mean while a hidden label control will display and date shuld be display in it
The coding is in ASP.NET 3.5.Here is the scenario.I am modifying a page that populates some data.In that page there is a table that displays pages. The pages have sub-pages and these sub-pages again have sub-pages.So thats three levels of hierarchal data presented.Right now its populated using asp:Treeview for easier display of the +(maximise) and -(minimise) images and all.Is that the best method? What are the alternatives?