From: "Simon Garner" <[EMAIL PROTECTED]>
Sent: Monday, March 12, 2001 11:37 AM


> Are you sure? The #include is an SSI directive, not ASP. It should create
a
> separate internal HTTP request for the included file. I know for sure that
> for example you can include a JScript ASP page inside a VBScript ASP page
> like this - although I realise that's not the same difference as ASP/PHP.

You're right about that, but AFAIK ASP will simply not allow two different
serverside script languages on the same page (which it becomes once the
inclusion is complete). You must state your @language=... directive as the
first ASP statement after which it cannot be changed.

Unless of course you use:

<script runat=server language=vbscript>
... your code here
</script>


<script runat=server language=jscript>
... your code here
</script>

Don't know if that will work though.

- Carsten



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to