Re: incompatible epapinit.c file error

2003-07-24 Thread Cameron McBride
On Tue, Jul 22, 2003 at 08:54:53PM -0700, Richard Schilling wrote: > httpd-2.0.47 you mentioned building HTML::Embperl. You don't mean a 1.x version of Embperl, do you? If you do - I do not think they work with any of the 2.x versions of apache. Cameron

Single Form - Multiple Destinations

2003-07-24 Thread Cameron B. Prince
Hi, I have a page that has a form with multiple submit buttons. Two of the buttons should and do only cause the page to refresh. The third button however, needs to cause the browser to load a different page. I'm doing somthing like this on another page with: $http_headers_out{'Location'} = "h

RE: Single Form - Multiple Destinations

2003-07-24 Thread Sean Howard
Hi Cameron, My first instinct on this would be to a javascript onClick() event on the button, which triggers a function that changes the form's action attribute based on which button they clicked, then submit the form. The function would look something like: function subform(destination)

RE: Single Form - Multiple Destinations

2003-07-24 Thread Cameron B. Prince
Hi Sean, > > My first instinct on this would be to a javascript onClick() > event on the button, which triggers a function that changes the form's > action attribute based on which button they clicked, then submit the > form. The function would look something like: > > function subform(dest

Re: Single Form - Multiple Destinations

2003-07-24 Thread Cameron McBride
On Thu, Jul 24, 2003 at 08:55:47AM -0700, Sean Howard wrote: > My first instinct on this would be to a javascript onClick() > event on the button, which triggers a function that changes the form's > action attribute based on which button they clicked, then submit the > form. The function wou