I am looking for CKEditor for ASP.NET but unable to use it because the dll library files are not provided in the setups available. Please guide how to include the dll library and provide any link where i can get those libraries.
If you're using ASP.NET WebForms (not MVC) and you're willing to use an older version of CKEditor (3.x from 2014) then you can download CKEditor for ASP.NET from the main download page. Scroll down until you see the "CKEditor 3.6.6.2 for ASP.NET" heading and click "Download now".
You'll get a zip file with a sample project including the DLL in debug and release versions. I just downloaded it now and it contains the DLLs.
Complete setup instructions are available here.
However, if you're not using WebForms this will not be of any use to you. I would also strongly suggest using the latest version of CKEditor (4.5.9 at the time of writing) and just adding the CKEditor script to your pages along with a textbox to hold the editor content.
Related
i am highly confused why i cannot intergrate the latest version of CKEditor in a ASP.net website. Which coding technologies is the 4.5.7 version comapible with (ie: php/jsp/ect)?
Isnt CKEditor for any HTML page?
Currently the latest ASP.net version is 3.6 which lacks support from many new plugins.
I made a quick test:
download and decompress the .Net package from CKEdit site (3.6);
download the latest version of the javascript files (4.5.7);
check that the samples provided with the .Net package work fine;
rename the ckeditor folder in the solution and copy the new one downloaded from the site;
clean the solution and rebuild the projet, and check if it works fine;
replace the occurrences of the "kama" skin to the newer "moono" as the former one is replaced by the other in the 4.x version;
like this, it seems to be working just fine
Do you have specific issues I can look into?
HTH
You add CKeditor.js javascript to your pages and call CKEDITOR.replace('id-of-textarea-here');
You don't need any ASP.NET specific packages.
I just got started working on ASP.NET 5. I want to have a help page for my methods, I have seen few examples for creating help pages but most of them are MVC specific. I have gone through Microsoft.AspNet.WebApi.HelpPage package, it creates an Area for help page but I am not using MVC pattern.
Any suggestions how can I create help page other than this area approach?
I would suggest looking at Swagger and SwaggerUI. Swagger is an open standard, using JSON to document an API, used by the likes of PayPal and Microsoft (check out Logic apps in the azure portal).
There are some open source implementations for .Net (both of which I have used), which will self document your API, just by adding the NuGet packages to your project and a little bit of configuration:
https://github.com/domaindrivendev/Swashbuckle
https://github.com/domaindrivendev/Ahoy
Swashbuckle is the original project and Ahoy is the new version targeting ASPNET5. When downloading the package from NuGet you will still get Swashbuckle, just make sure you tick "include pre-release", and if you need any documentation look at the original GitHub project.
SwaggerUI (which is also included in Swashbuckle) adds an interface which you can use to navigate and test your API, by default this is available from "/swagger/ui" when your project is running.
Here is a sample repo in GitHub I put together showing how it can be used: https://github.com/mattridgway/ASPNET5-SwaggerUI
I am maintaining a website that use this version of Telerik: 2012.3.1018. With this version I have files with telerik prefix like:
-telerik.all.min.js
-telerik.autocomplete.min.js
-telerik.calendar.min.js
...
...
-telerik.window.min.js
The business want to update the site to a new version: telerik.ui.for.aspnetmvc.2014.1.528.commercial
I found the css, but I can't find the js files. Are they discontinued?
I am seeing just kendo.js files and I am missing telerik.js files. Can anyone help me to understand the difference between Telerik's version?
Telerik Extensions for ASP.NET MVC has been discontinued in 2013. The successor product is Telerik UI for ASP.NET MVC (ASP.NET MVC wrappers for Kendo UI). Have in mind that those products are not compatible and there are API and behavior changes. There is a migration guide available here: http://docs.telerik.com/kendo-ui/getting-started/using-kendo-with/aspnet-mvc/migration/migrating-from-telerik-extensions-for-aspnet-mvc
This may be a bit of a silly question, but here goes..
I'm new to kendo UI and asp.net mvc, so i got myself a book to get me started.
However, in the exercise in the book, they use a kendo for asp.net mvc zip file.
I have looked around on the kendoUI website and it also says that you have the option to either download the msi or a zip file, but for the asp.net download, it does not give me an option, just automatically downloads the msi installer.
Anybody know how I can get the kendo UI Complete for asp.net MVC??
Will really appreciate the help.
Thanks
You can check the different packages and download them here: http://www.kendoui.com/download.aspx
They have a 30 day trial for "Kendo UI Complete for ASP.NET MVC"
This is a good introduction to ASP.NET MVC and there is a link to where to find all you need.
Check also their page on ASP.NET MVC here where you can also find a link to the downloads.
I'm just starting out with ASP.net MVC 3 and I've created an empty project. I noticed that the scripts folder is populated with a number of JavaScript files, including:
jQuery 1.5.1
jQuery UI 1.8.11
Some jQuery plugins
ASP.net MVC libraries
I want to develop my application with the latest versions of jQuery and jQuery UI served from the Google AJAX CDN. My plan is to develop a single page AJAX application, and I don't see myself using too many of the build in features for model validation, however I would like to keep the option of using it open.
Will I run into any problems with my application if I clear out the Scripts folder completely? And will I run into compatibility problems using the latest versions of jQuery and jQuery UI with the ASP.net MVC libraries?
Will I run into any problems with my application if I clear out the Scripts folder completely?
No, if you don't use them.
And will I run into compatibility problems using the latest versions of jQuery and jQuery UI with the ASP.net MVC libraries?
No. The only compatibility problem I can think of was with jQuery UI and jQuery validate plugins but they are bot non-Microsoft so if you update them both to the latest version you won't have problems (this assumes of course that you are using client side validation, if you aren't its irrelevant to you).
So feel perfectly free to remove the scripts folder and reference external scripts from CDNs.