On Wed, Jan 08, 2003 at 03:35:20PM +0100, Torbj?rn Rogde wrote:
> Hello!
> Hope you have time to help me with a small problem that I got using your
> really fantastic LFTP (version 2.4.0)...
> It seems that I cannot post a form by directly from lftp, e.g.
> >lftp open http://www.my.site
> > get "/folder/aspscript.asp?param=value"
lftp quotes '?' as %3F, because it is a special character in URLs.
You can still post forms by specifying complete URL in get command:
get "http://www.my.site/folder/aspscript.asp?param=value"
--
Alexander.