
how to pass parameters in an include file which is included in an asp page
Quote:
> i have an include file that i have included in an asp file.now i want
> to change some functionality of the include file by passing a
> parameter thru javascript or anything else.
> is there any syntax thru which i can pass the parameter
Included files (let's call them 'includees') are incorporated into the page
that includes them (lets call it the 'includer') before any of the combined
server side script code is executed.
So if you Dim and assign a value a variable in the server side script of the
'includer', then server side script in subsequent 'includees' will see that
variable's value.
--
Michael Harris
Microsoft.MVP.Scripting
Seattle WA US