can i use both VBscript and javaScript in an ASP page? vbScript is run at server which deal with database and javaScript is run on client(browser)???
thanks in advance for the helps...
shvonne ^o^
Printable View
can i use both VBscript and javaScript in an ASP page? vbScript is run at server which deal with database and javaScript is run on client(browser)???
thanks in advance for the helps...
shvonne ^o^
you can use both scripting languages on both the server and the client in one page.
(VBScript OTOH is only understood by IE.)
mr lothar,
thanks for the information.
is it means that if i'm using Netscape to browse to a page which content vbscript run at server and javaScript run at client, it work?
You can use both vbscript and javascript in script side of ASP page:
<SCRIPT LANGUAGE="javascript">
</script>
But in server side of ASP pages you can use only vbscript.
Sorry but the old message isn't completed.
You can use both vbscript and javascript in script side of ASP page:
<SCRIPT LANGUAGE="javascript">
</SCRIPT>
<script language="vbscript">
</script>
But in server side of ASP pages you can use only vbscript.
yes, you can run an ASP from a Netscape browser and have client-side scripting in JavaScript and server-side scripting in VBScript or JScript.