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
public void PageLoad(...) { if (IsPostBack) { string content = Request.Form["YourEditorName"]; // Use your content } }handle non ASP.NET posts