I have built a CMS with a Rich text editor in a popup. To send article content to the Rich Text Editor I am URL encoding it and tacking it onto the querystring. Problem is there is a querystring limitation of 1024 characters. So, I guess I need to use post instead.
Any ideas how I can POST this data (instead of GET/querystring) to my popup editor?
Thanks.