Jan 12, 2001 #1 khurram IS-IT--Management Jan 10, 2001 95 CA I have a parameter embedded in a URL. When the customer clicks the Update button, Iwant the embedded parameter to stay in the URL. How can I do this?
I have a parameter embedded in a URL. When the customer clicks the Update button, Iwant the embedded parameter to stay in the URL. How can I do this?
Jan 12, 2001 1 #2 GunJack ISP Dec 14, 2000 965 US Hey khurram, I think this is what you want. <cfoutput> <form method="post" action="newScript.cfm?var1=#urlencodedformat(var1)#"> .... </form> </cfoutptu> Hope this helps, GJ Upvote 0 Downvote
Hey khurram, I think this is what you want. <cfoutput> <form method="post" action="newScript.cfm?var1=#urlencodedformat(var1)#"> .... </form> </cfoutptu> Hope this helps, GJ
Jan 12, 2001 Thread starter #3 khurram IS-IT--Management Jan 10, 2001 95 CA Worked like a charm. Thanks!! Upvote 0 Downvote