
Calling Server Side Script from Client Side Script
You can in fact do this, but it is more complicated than you think.
Check the microsoft site and look up "Remote Scripting"
hope this helps!
Jenna
Quote:
>I'm trying to call a server side script to connect to an Access DB, from a
>clent side script. Can you tell me what's wrong with this code ?
><SCRIPT LANGUAGE="VBScript">
> Sub validate()
> ...
> insert
> End Sub
></SCRIPT>
><SCRIPT LANGUAGE="VBScript" RUNAT=Server>
> Sub insert()
> ...
> End Sub
></SCRIPT>