Forum Moderators: coopster

Message Too Old, No Replies

POST to a popup

Any Ideas?

         

cabbagehead

11:06 pm on Dec 20, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



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.

sned

11:31 pm on Dec 20, 2006 (gmt 0)

10+ Year Member



How about storing the data in sessions between pages?

-sned

apsivam

10:43 am on Dec 21, 2006 (gmt 0)

10+ Year Member



try this...

<form target="_blank">
</form>

--
Cheers,
Sivanandhan, P. (a.k.a. apsivam)

omoutop

2:56 pm on Dec 21, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



If you store your article in a database, send the article id. In your Pop UP just use the id to get the article from the database. No actual limit in size (for normal articles - unless you load a whole 5000 pages book :) )