Web Forms :: Trying To Get Ckeditor Working On Site?

Jun 21, 2010

I am trying to get ckeditor working on my site (having successfully used in on previous sites in the past).I have copied the ckeditor (main download) folder to the root of my site and I have added the FCKeditor.Net_2.6.3 dll to my site (plus added it to
the toolbox). I have set the basepath to "~/ckeditor/" and when I view the page in a browser it tells me that the following file is missing.

http://localhost:80/Web1/ckeditor/editor/fckeditor.html?InstanceName=FCKeditor1&Toolbar=Default

Does anyone know where I can find this file (as it is nowhere to be seen in the ckeditor_3.3.1 download, in fact I don't have a folder called "editor" at all)?

View 5 Replies


Similar Messages:

Forms Data Controls :: CKEditor Not Working Properly In Listview Control?

Apr 16, 2010

I have used CKEditor in Insert item template and Edit Item Template in List view, for this i have used a textbox

<asp:TextBox
ID="txtComment"
runat="server"
TextMode="MultiLine"

[Code]....

View 8 Replies

Aspx Site Not Working Out Site Of Development Environment

Oct 27, 2010

I made an aspx site with .net 4.0 framework through visual studio and it worked perfectly in the development environment but when I upload it to the server and try to run it I get this error: Server Error in '/' Application. Runtime Error Does anyone have an idea on how to fix this?

View 4 Replies

Asynchronous C# Method Calls In Page Working On Debug, But Not Working On Live Site

Jan 25, 2011

OK Here is the situation:

I have a web app with a table of statistics on our salesmen's customers, and each row has a sparkline graph showing the general trend of the sales data for the last 12 months. Each page shows a particular salesman's customer list, and some of them can have an enormous number of customers = an enormous number of rows = an enormous number of sparklines (e.g. one in particular has 125 and takes 15 seconds to load).

For this reason, jQuery sparklines could not be used - they completely pinned the CPU of a user accessing a page with a lot of sparklines with IE.

So I moved on to using the Google Chart API, which worked much better, except for two issues: 1) it's on a secure site, and the Google Chart API URL is only served over HTTP (solved by using a small wrapper script to download the graph dynamically and re-serve it from our secure server); and 2) on a page with 125 sparklines, it was still very slow due to the number of requests (even when the 0-9 server prefixes are used to maximize the # of available connections).

So my next step beyond this was to try to make each of the "download/grab/re-serve image" method calls asynchronous - and it worked!

...but only on my dev box running in debug mode.

When I pushed it up to the live site, it was faster, but it left some of the images unloaded, which is of course unacceptable.

So here is what I was hoping some SO hotshot would know:

1) Why are my asynchronous method calls working while debugging, but not working on the live site?

2) Is there any easier way to get a large number of sparklines of some sort to load quickly on a secure server without making me want to tear my hair out?

2a.) Does anyone have any experience using the ASP.NET Chart Library? Is this something I should investigate?

2b.) A co-worker suggested I make my own sparkline routine using a 1x1 CSS background image and varying the height. The problems are a) it is completely un-extensible in case we want to make changes; b) it seems hacky as hell (leaves about a bajillion DIVs per sparkline in the markup); and c) I have no idea if it will be fast enough when there are 100-200 of them on one page - what are your thoughts on the feasibility of the 1x1 sprite approach?

View 2 Replies

Web Forms :: Theme Not Working - Live Site

Jan 20, 2010

The theme I'm using is not working in Visual Web Developer, I have the following code in place:

<%@
Page
Theme="MyTheme"
Language="VB"
AutoEventWireup="false"
CodeFile="Default2.aspx.vb"
Inherits="Default2" %>

the theme is getting applied to the live site.

View 3 Replies

Web Forms :: How To Integrate CKFinder In CKEditor

May 7, 2015

I am using ckeditor for asp.net as a editor control . i want to integrate ckfinder control with ckeditor to mange file manger with ckeditor control, i am trying from some days with the documentation provided on ckeditor website but not able to integrate.

View 1 Replies

Web Forms :: Page With Ckeditor Opens With Focus On It?

Mar 1, 2010

i m facing a problem while using the latest version of ckeditor.actually i designed a asp.net page and include a ckeditor in it.

ck editor is at the bottom of add report page.

every time i open that page the ckeditor is mainly focused . that is the page automatically scrolls down to showw the Ckedito.

I google a lot but did.nt get any solution

i also tried MaintainScrollPositionOnPostback="false" directive in page directive but no effect

View 2 Replies

Web Forms :: Limit Number Of Character In CKEditor

Jul 3, 2012

According below article i set limit characters for textbox [URL] ....
 
Now I want do it for CkEditor i wrote these code

<CKEditor:CKEditorControl ID="CKEditorControl1" runat="server"></CKEditor:CKEditorControl>
<asp:RegularExpressionValidator Display = "Dynamic" ControlToValidate = "CKEditorControl1" ID="RegularExpressionValidator3" ValidationExpression = "^[sS]{0,600}$" runat="server" ErrorMessage="please enter Maximum 600 Characters." CssClass="valid1"></asp:RegularExpressionValidator>

but it didn't work...

View 1 Replies

Web Forms :: Parsing Html From Ckeditor And Inserting Usercontrols In The Text?

Feb 1, 2011

I am trying to add some widget-functionality to the CKEditor using custom plugins.. Does anyone have any experience parsing the resulting html or getting the job done in another way?

What I am looking for is to add something like a news-block at a user specified place in the text, like an ordinary image..

I have thought of several options, like just adding an iframe that takes care of the content automatically (from the src url in the iframe), but that way I loose the text formatting/css.. I have also thought of adding the content dynamically with some ajax onload, but that way I might loose some viewers..

Finally I have come to the conclusion that using custom tags like <something options="..." /> or even <div class="something" options="..."></div> and then replacing them with usercontrols is the best solution.. But how to accomplish this? I know how to add controls to other servercontrols, but how to add them easily in some random text? It could be something like putting the text prior to the widget and after into a placeholder and adding the widget-control in between..

View 1 Replies

MVC URL Parameter To Friendly Site Is Not Working?

Jun 22, 2010

have a search on my site, in which search type and search word are in URL like this: /search/t-someword.htmly route for search:

routes.MapRoute("Search", "searchj/{type}-{word}.html", new { controller = "Search", action = "Index"}, new { type = @"[t,s,p]"});

Everything works fine but when I change string to do not show spaces that word like "some words" looks like "some-words" it doesn't work. With spaces it works

View 4 Replies

MVC :: Routes Not Working On Site Root?

Jan 27, 2011

On a MVC 3 site I have a area named "CMS" on on CMSAreaRegistration I have:

[Code]....

All the CMS controller are under the namespace Site.CMS.Controllers And in Global.Asax I have:

[Code]....

The CMS routes seem to work as expected. But the following link on my site root:

[Code]....

I tried many options to try to solve it but I always get something wrong.

View 13 Replies

How To Ckeditor 3.2.1

Jun 24, 2010

anybody knows how to use ckeditor 3.2.1 in asp.net pages. i tried to follow one tutorial but that works only for simple asp.net pages. when i apply it to content page then it is not working.

View 1 Replies

SQL Reporting :: Some Links On Admin Site Not Working

May 3, 2010

I have one strange issue on SQL Reporting Services admin website (like URL). I am System Administrator as well as the content manager of this site. Under the Contents tab, the links
New Data Source and Upload File is redirecting to https:// site(secured site) which always fail to load. But the links for the New Folder and Report Builder are working fine and redirects to http:// site. I repaired the installation of SQL Server also but there is a same problem.

View 4 Replies

@font-face Not Working On A Client Site?

Apr 26, 2010

This is CSS code

@font-face {
font-family: 'FuturaStdBook';
src: url('site/font-face/futurastd-medium-webfont.eot');
src: local('☺'), url('site/font-face/futurastd-medium-webfont.woff') format('woff'), url('site/font-face/futurastd-medium-webfont.ttf') format('truetype'), url('site/font-face/futurastd-medium-webfont.svg#webfont') format('svg');
font-weight: normal;
font-style: normal;
}

h2 {font-family:'FuturaStdBook', sans-serif}

Can it be related to mime type?

How can i ensure my path is right?

View 3 Replies

Security :: Profile Not Working After Site Move?

Jul 8, 2010

We moved our website from one production server to another production server. DNS propagation is not an issue here. Some users cannot login now and others can. Those that can login do not see the same menu items that they used to see prior to the move. It's like the profile provider is not working. I checked the web.config file and everything appears to be the same as it was before. Is there something else I forgot to move?

View 4 Replies

Download Link Not Working From Published Site?

Apr 5, 2010

I have an asp.net that produces a Word document. I want to allow users to download the file to their local drive. I use a hyperlink to achieve this and it works fine from my development site. However, when the website is accessed from a non development machine, I am sent to the proper directory, but instead of the open/save/cancel dialog I am presented with a "Convert File" dialog. Any of the selected file types I select download unusable files. I think this has to do with office being installed on the local machine on which I am attempting the download. Is there any way I can simply download a file from a virtual file to my local drive?

View 2 Replies

Ckeditor - Where To Get Assembly

Oct 11, 2010

I have to use a ckeditor in my application but I dont know how to write the

@ Register Assembly="" Namespace="" TagPrefix="" %>

From where I could get the assembly?

View 3 Replies

Integrating CKEditor In MVC 2?

Oct 22, 2010

I want to use CKEditor for a comment field in my ASP.NET MVC 2 application, but can't get it to work. Here is what I have:

The textarea where I try to integrate the editor:

[code]....

And the document ready function:

[code]....

I don't know if the problem is with the TextareaFor helper method, where I tried to set the id to Editor1. I'm pretty new to MVC as well, so I guessed this was how to do it.

View 2 Replies

Ckeditor Will Not Work In FireFox?

Sep 27, 2010

I'm using ckeditor in my page and it's work fine, except when I'm sending email. The mailbody is empty in FireFox, in IE it works fine. What can it be? Here is my code

[Code]....

View 3 Replies

C# - How To Correctly Implement CKEditor V3

Sep 5, 2010

I'm not so much into JavaScript, so I'm not able to use the new CKEditor right away. Until now I was using the FCKEditor ASP.net wrapper, which works fine for me. Unfortunatly the official wrapper is not for version 3.

I've googled [URL] but the project is over a year old and seems like a beta to me.

Is there a stable ASP.net wrapper for the CKEditor available? Or how can I implement it into my ASP.net Webapplication project?

View 1 Replies

MVC :: How To Do Jquery Ckeditor Integration

Jun 8, 2010

can some one point me to a good guide for jquery asp.net mvc ckeditor integration?

View 1 Replies

Jquery Ckeditor Language Dir?

Aug 4, 2010

how can i define the language dir in this code

$(document).ready(function () {
$('#Header1').ckeditor();
});

View 1 Replies

MVC :: Ckeditor - Post The Value To The Controller

Jun 9, 2010

I have added ckeditor on my page. the thing is that when i make changes in the value in the ckeditor and post the value to the controller the new posted value is not there (the previous value is coming). the new value comes on posting it second time.the cycle goes on(the changes in the value in the ckeditor comes on the second posting).if i remove the createsuccess call and use html.beginform it work fine(but i have to return the value from the controller). what i am doing wrong

[Code]....

View 2 Replies

MVC :: RequestValidationException Using CKEDITOR In MVC 2 View?

Jul 8, 2010

The CKEDITOR seems to integrate with the TextAreaFor helper but I cannot figure out how to avoid throwing a request validation exception. This is my code from my View page:

<div class="editor-field" >
<%= Html.TextAreaFor(model => model.WebCopy, 10, 80, "" ) %>
<script type="text/javascript">
var CKEDITOR_BASEPATH = '/ckeditor/';
$(function (e) {
// to show the CK editor
CKEDITOR.replaceAll(
{
htmlEncodeOutput : 'true'
});
});
</script>
</div>

I have tried setting <%@ Page ValidateRequest="false" %> and adding <httpRuntime requestValidationMode="2.0" /> to the web.config file.

View 1 Replies

Finding File Manager For CKEditor?

Apr 1, 2011

Is There any fileManager for asp.net CKEditor ?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved