Re: virtual includes

2002-03-29 Thread Joshua Chamas
constfilin wrote: > > Greetings - > > I'm a newbie to Perl and - so much the more - Apache::ASP, > but when I needed

Re: Trying to patch Apache::ASP::FormFill

2002-03-29 Thread eamondaly
> Try this in global.asa: > > sub Script_OnStart { > $Request->{Form} = $Request->{Params}; > } > > I would like to keep the FormFill functionality filling from > the form only so people do not have any unexpected surprises. > Hopefully the above will work for you. Works like a dream. Thanks,

Re: Trying to patch Apache::ASP::FormFill

2002-03-29 Thread Joshua Chamas
eamondaly wrote: > > I'm stuck on what should be a pretty simple patch to FormFill. We > pass data around via QueryString a lot, so I'd like our form fields > to be prefilled using both $Request->QueryString and $Request->Form. > Try this in global.asa: sub Script_OnStart { $Request->{Form}

Re: virtual includes

2002-03-29 Thread eamondaly
--- In [EMAIL PROTECTED], "constfilin" <[EMAIL PROTECTED]> wrote: > 4. Is there is a better, *right* implementation of virtual >includes in Apache::ASP. If so then what is it? You can get the same thing using the more ASP-ish: <% $Response->Include( $Server->MapPath("/foo.html") ) %> $Serve