I have download the ASP .NET library and successfully got FCKEditor to render. However, the only thing I could get posted output from was if I had a submit button. How would I be able to grab the posted data and do some action using the "save" button in the toolbar in an ASP .NET website?
Thanks
Thanks
Re: ASP .NET integration
Re: ASP .NET integration
What Editor's Save button does is just posting the value to the server with the name of the editor.
So it seems all you need to do on your ASP.NET page is to grab that data from Form collection:
If you want to respond to SAVE button you need to know how to handle non ASP.NET posts.
I would just use normal submit button instead that FCK Save one.
Cheers,
Dmitriy,