>> Here's some good links.
>>
[quoted text clipped - 21 lines]
> way the author phrased it, it sounds like they would be processed the same
> way.
>>> Here's some good links.
>>>
[quoted text clipped - 24 lines]
> I didn't find it misleading at all...
> The author should have mentioned PHP as well...
Indeed, if the author had went with "Perl, PHP, Ruby", I wouldn't have
said anything.
> My point is that all those scripting-languages is very common as
> server-side
[quoted text clipped - 5 lines]
> other
> use VBScript server-side.
Right, I'm aware of VBScript as a legal sub-language within ASP, which
is why I didn't mention VBScript so much in my post. This is the first I've
ever heard of JavaScript being another legal sub-language.
Apparently, IE also supports something called "PerlScript", so it looks
like Perl (or some facsimile thereof) could be run client-side as well.
- Oliver
Dag Sunde - 24 May 2006 23:05 GMT
<snipped/>
>> The fact that VBScript (IE) and Javascript is commonly used as
>> client-side
[quoted text clipped - 6 lines]
> is why I didn't mention VBScript so much in my post. This is the first
> I've ever heard of JavaScript being another legal sub-language.
Just start your .ASP page like this:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
I use it sometimes in IIS because of JS' superior functions
when it comes to Regular Expressions.
> Apparently, IE also supports something called "PerlScript", so it looks
> like Perl (or some facsimile thereof) could be run client-side as well.
Now *that* was news for me!
:-)

Signature
Dag.
dingbat@codesmiths.com - 26 May 2006 12:20 GMT
> Apparently, IE also supports something called "PerlScript", so it looks
> like Perl (or some facsimile thereof) could be run client-side as well.
IE and ASP support the "ASP programming language interface" (M$ will
have a proper name for this, which I neither know nor care about). You
can write _any_ language engine to work with this, so long as it allows
the source to be supplied in a simple form that's broadly "HTML with
code snippets delimited by <@ ... @> markers" and it also has a simple
COM interface to the engine itself.
This is one of the reasons why all ASP code (in any language) always
reeks of COM throughout, particularly for data typing and Collection
handling.
Of course this flexibility is more use on the server than on the
client, owing to the need to pre-install language components. Still,
someone with an intranet might find it worthwhile to deploy <foo>Script
one day.
I've personally used PerlScript (best way to port old Perl CGI code
onto IIS, although I wouldn't recommend it). COBOLScript was one of my
favourite ever hacks for making some old legacy data appear on the web
almost instantly (I did a 3 month project in 2 weeks with that, and
billed accordingly!). I've also seen RexxScript, which is handy for
the IBMers and Amigoids.
The only one I'd definitely recommend against is VBScript. You can do
anything with JScript that you can do with VBScript and it's a much
nicer language (try and catch are themselves sufficient reason).