Date:  11/05/2004 09:54:56 PM Msg ID:  002340
From:  Joe Goldsmith Thread:  002340
Subject:  Length of passed variable
How many characters in a text string can one variable pass to another variable in another page? For example, the value of M.LNOTES is about two pages of text. When passed to the called FWX I'm only getting about less than a full page.
 
Please consider the following code snippit
 
CALLING FWX:
<A HREF="printit1.fwx?mletter=<%=Server.URLEncode(TEXTMERGE(M.LNOTES, .F.))%>" TARGET="_BLANK">[Print]</A>
 
CALLED FWX:
MergedText = Request.QueryString('mletter')
RESPONSE.WRITE(MergedText)
 
Thanks for you help.
 
Joe