J
John Davis
When I create new documents in Dreamweaver, there are several choices for
ASP creation:
ASP JavaScript: run at client side??
ASP VBScript: run at server side??
ASP.NET C#
ASP.NET VB
I don't understand the differences between ASP JavaScript and ASP VBScript??
Because JavaScript is client-side technology, and ASP is server side
technology. I think VBScript is used to implement ASP pages.
Here's the header differences from the code generator:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
If I put the following in both ASP JavaScript and ASP VBScript, it works
both. But this is JavaScript.
<SCRIPT>
<!--
d = new Date();
document.write (d);
//-->
</SCRIPT>
Please advise,
John
ASP creation:
ASP JavaScript: run at client side??
ASP VBScript: run at server side??
ASP.NET C#
ASP.NET VB
I don't understand the differences between ASP JavaScript and ASP VBScript??
Because JavaScript is client-side technology, and ASP is server side
technology. I think VBScript is used to implement ASP pages.
Here's the header differences from the code generator:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
If I put the following in both ASP JavaScript and ASP VBScript, it works
both. But this is JavaScript.
<SCRIPT>
<!--
d = new Date();
document.write (d);
//-->
</SCRIPT>
Please advise,
John