Re: POSTing to a .html URL

2002-04-07 Thread Teresa Raymond
This may be what you are looking for: Put your receiving variables html into a cgi prog, pass the variables with the submit button to this cgi prog in which, I think, you can still use your html templates as long as they are accessed by the full url. Let me know if this works out. >Hi Michae

Re: POSTing to a .html URL

2002-04-06 Thread David R. Baird
Hi Michael, thanks for taking the time to answer. The reason I would like to work this way (access a cgi script as an SSI within an html file) is because I am using a templating system (Mason) to develop a web site, but the production site will not be able to use Mason, so I have a script th

Re: POSTing to a .html URL

2002-04-04 Thread Michael Kelly
On 4/4/02 9:16 AM, David R. Baird <[EMAIL PROTECTED]> wrote: Hi David, > I have cgi script that is INCLUDEd in a web page: > > page.html: > > > > > > > > The script prints out a form. When the form's method attribute is GET ie > I assume you mean 'method="get"' here. > , it works fin

POSTing to a .html URL

2002-04-04 Thread David R. Baird
I have cgi script that is INCLUDEd in a web page: page.html: The script prints out a form. When the form's method attribute is GET ie , it works fine, but I want to process a password, so I need to POST to page.html When I do, I get a 405 error: The requested method POST is not allowed