Pass Parameters to <!-- #Include File="file.asp" -->

Pass Parameters to <!-- #Include File="file.asp" -->

am 03.04.2007 18:24:59 von vunet.us

What is the workaround of passign a parameter to any included asp
file:



This obviously does not work:



Thank you

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 03.04.2007 18:45:06 von Jon Paal

Server.Execute Method

The Execute method calls an .asp file, and processes it as if it were part of the calling ASP script. The Execute method is similar
to a procedure call in many programming languages.

http://msdn2.microsoft.com/en-us/library/ms525849.aspx





wrote in message news:1175617499.385520.188400@n76g2000hsh.googlegroups.com.. .
> What is the workaround of passign a parameter to any included asp
> file:
>
>
>
> This obviously does not work:
>
>
>
> Thank you
>

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 03.04.2007 18:55:50 von vunet.us

On Apr 3, 12:45 pm, "Jon Paal [MSMD]" dot com> wrote:
> Server.Execute Method
>
> The Execute method calls an .asp file, and processes it as if it were part of the calling ASP script. The Execute method is similar
> to a procedure call in many programming languages.
>
> http://msdn2.microsoft.com/en-us/library/ms525849.aspx
>
> wrote in messagenews:1175617499.385520.188400@n76g2000hsh.googlegroup s.com...
> > What is the workaround of passign a parameter to any included asp
> > file:
>
> >
>
> > This obviously does not work:
>
> >
>
> > Thank you

so will this work?: Server.Execute myfile.asp?id=123

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 03.04.2007 19:22:36 von Jon Paal

no, you don't need to pass anything through.

The external file is processes information as though it is part of the originating file.

Therefore any values in the originating file (id=123) can be used by the external file.

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 03.04.2007 20:26:11 von vunet.us

On Apr 3, 1:22 pm, "Jon Paal [MSMD]" com> wrote:
> no, you don't need to pass anything through.
>
> The external file is processes information as though it is part of the originating file.
>
> Therefore any values in the originating file (id=123) can be used by the external file.

Do you say I cannot use params at all?

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 03.04.2007 20:40:56 von Jon Paal

params aren't required with this solution, please read the instructions for usage at the site link provided.





wrote in message news:1175624771.487195.216760@b75g2000hsg.googlegroups.com.. .
> On Apr 3, 1:22 pm, "Jon Paal [MSMD]" > com> wrote:
>> no, you don't need to pass anything through.
>>
>> The external file is processes information as though it is part of the originating file.
>>
>> Therefore any values in the originating file (id=123) can be used by the external file.
>
> Do you say I cannot use params at all?
>

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 03.04.2007 22:15:55 von Anthony Jones

wrote in message
news:1175617499.385520.188400@n76g2000hsh.googlegroups.com.. .
> What is the workaround of passign a parameter to any included asp
> file:
>
>
>
> This obviously does not work:
>
>
>
> Thank you
>

Is the file being included expecting to be able to read parameters from the
querystring?
Can it be independantly visited by the client or is it always intended to be
an include?

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 03.04.2007 23:06:47 von vunet.us

On Apr 3, 4:15 pm, "Anthony Jones" wrote:
> wrote in message
>
> news:1175617499.385520.188400@n76g2000hsh.googlegroups.com.. .
>
> > What is the workaround of passign a parameter to any included asp
> > file:
>
> >
>
> > This obviously does not work:
>
> >
>
> > Thank you
>
> Is the file being included expecting to be able to read parameters from the
> querystring?
> Can it be independantly visited by the client or is it always intended to be
> an include?

i've decided using this strategy:
dim id : id=123

id=321


where file.asp will assign id value to appropriate object.
yes, i do need to use some kind of include method

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 04.04.2007 00:06:01 von Dave Anderson

vunet.us@gmail.com wrote:
> i've decided using this strategy:
> dim id : id=123
>
> id=321
>
>
> where file.asp will assign id value to appropriate object.
> yes, i do need to use some kind of include method

This is an especially inefficient way to use include files. You would be
better served by putting the applicable parts of the include into a Sub or
Function, then call them with the respective IDs:

[------- Begin file.asp ----------]
Sub DoStuff(id)
{ your included code goes here }
End Sub
[-------- End file.asp -----------]

As long as everything in the include is in functions or subroutines, you can
place it anywhere in your document and make the calls where you need them.




--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 04.04.2007 16:42:55 von vunet.us

On Apr 3, 6:06 pm, "Dave Anderson" wrote:
> vunet...@gmail.com wrote:
> > i've decided using this strategy:
> > dim id : id=123
> >
> > id=321
> >
>
> > where file.asp will assign id value to appropriate object.
> > yes, i do need to use some kind of include method
>
> This is an especially inefficient way to use include files. You would be
> better served by putting the applicable parts of the include into a Sub or
> Function, then call them with the respective IDs:
>
> [------- Begin file.asp ----------]
> Sub DoStuff(id)
> { your included code goes here }
> End Sub
> [-------- End file.asp -----------]
>
> As long as everything in the include is in functions or subroutines, you can
> place it anywhere in your document and make the calls where you need them.
>
> --
> Dave Anderson
>
> Unsolicited commercial email will be read at a cost of $500 per message. Use
> of this email address implies consent to these terms.

so if I have 4 pages I normally "include" now, you suggest to combine
them into one page each within a sub? that will be a loooong code
page. what is "inefficient" about my method above? i understand that
may not be the best way, but i want to know how it make things worse.

Re: Pass Parameters to <!-- #Include File="file.asp" -->

am 04.04.2007 21:33:08 von Dave Anderson

vunet.us@gmail.com wrote:
> so if I have 4 pages I normally "include" now, you suggest to
> combine them into one page each within a sub?

Not at all. I am saying there is almost never a benefit to including the
same file twice in the same script. To extend my example to your original
one, instead of this...

dim id : id=123

id=321


....use this:

(with Sub defined)
DoStuff 123
DoStuff 321


> what is "inefficient" about my method above? i understand that
> may not be the best way, but i want to know how it make things
> worse.

The parser will fetch a copy of the included file for each #include
statement and splice it into the script before parsing a sigle line of
VBScript. Your approach could add a tremendous amount of redundancy.

As for your concerns about the length of code, my suggestion actually
shortens it.



--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.