[Lazarus] TFPWebModule.ActionVar

2011-05-23 Thread Lee Jenkins
What is it used for? -- Warm Regards, Lee -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] TFPWebModule.ActionVar

2011-05-23 Thread Michael Van Canneyt
On Mon, 23 May 2011, Lee Jenkins wrote: What is it used for? There are 2 ways to specify what web module/action should be executed: /path/to/cgi/mymodule/myaction or /path/to/cgi?modulevar=mymoduleactionvar=myaction ActionVar determines the name of the query variable used to determine the

Re: [Lazarus] TFPWebModule.ActionVar

2011-05-23 Thread Lee Jenkins
On 5/23/2011 3:12 PM, Michael Van Canneyt wrote: On Mon, 23 May 2011, Lee Jenkins wrote: What is it used for? There are 2 ways to specify what web module/action should be executed: /path/to/cgi/mymodule/myaction or /path/to/cgi?modulevar=mymoduleactionvar=myaction ActionVar determines

Re: [Lazarus] TFPWebModule.ActionVar

2011-05-23 Thread ABorka
What is it used for? -- Warm Regards, Lee There can be many uses for it, but not always necessary of course. It is basically a way to pass the action name to fpweb as a parameter. From the simplest query parameter passing the action name, to the more difficult way of handling encrypted

Re: [Lazarus] TFPWebModule.ActionVar

2011-05-23 Thread Lee Jenkins
On 5/23/2011 4:19 PM, ABorka wrote: What is it used for? I have a project using the latter for example. In that project all the URLs are looking something like: https://www.somewebsite.com/mymodule/2C5DC93248CB271880F576D6F1D9?4384498578034E573B4796C1 No cookies used for anything at all