I'm using FCKEditor with asp.net and have to say it is great product. The problem I have : when user clicks insert link (new popup window will open) and then when he clicks "browse server" it will open "resource browser" with 4 types to choose from: flash, file, image, media (folders are located in "domain.com/upfiles/").
What I would like to do is add 5th type "ASPX" - so he could click on file and create link. The aspx files are stored in "domain.com/ASPX/" folder.
So how do I :
- add extra type to resource browser (folder outside structure where all other file types are stored)
- how do I make it default selection - so when user click on insert link/browse server the ASPX type will be selected as default ?
What I would like to do is add 5th type "ASPX" - so he could click on file and create link. The aspx files are stored in "domain.com/ASPX/" folder.
So how do I :
- add extra type to resource browser (folder outside structure where all other file types are stored)
- how do I make it default selection - so when user click on insert link/browse server the ASPX type will be selected as default ?

Re: insert link+ file browser
AllowedTypes = new string[] { "File", "ASPX", "Image", "Flash", "Media" };TypeConfig["ASPX"].AllowedExtensions = new string[] { "aspx" }; TypeConfig["ASPX"].DeniedExtensions = new string[] { }; TypeConfig["ASPX"].FilesPath = "/ASPX/"; TypeConfig["ASPX"].FilesAbsolutePath = (UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%file/"); TypeConfig["ASPX"].QuickUploadPath = "%UserNMGPath%"; TypeConfig["ASPX"].QuickUploadAbsolutePath = (UserFilesAbsolutePath == "" ? "" : "%UserFilesAbsolutePath%");http://localhost:1769/FCKeditor/editor/ ... 2723528410
Re: insert link+ file browser