asp_web_howto thread: Combining Client side Script(Javascript) and Server side Script(ASP)
Message #1 by "e n z o" <enzaux@g...> on Sat, 16 Feb 2002 06:09:21 +0800
|
|
This is a multi-part message in MIME format.
------=_NextPart_000_024E_01C1B6B0.79E4ED70
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
I have this colleague that he has client side script
(javascript) calling an asp function from an include asp file. It is
working great. Now he had done this by including some additional files
which MSVisual InterDev has readily provided. What if I don't have
MSVisual Interdev on my pc how would I do it manually and do the said
process on my asp page?
Thanks,
Enzo
Message #2 by "Ken Schaefer" <ken@a...> on Tue, 19 Feb 2002 11:37:44 +1100
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "e n z o" <enzaux@g...>
Subject: [asp_web_howto] Combining Client side Script(Javascript) and Server
side Script(ASP)
: I have this colleague that he has client side script (javascript)
: calling an asp function from an include asp file. It is working great.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This is impossible without using MS-specific technologies.
ASP runs on the server. Javascript runs in a browser. The only way a browser
can get the server to do something is to issue a request for a new web
(.asp) page.
Cheers
Ken
|