Click here to Skip to main content
15,914,500 members
Home / Discussions / Web Development
   

Web Development

 
GeneralXML Pin
lm7-Feb-00 9:19
lm7-Feb-00 9:19 
GeneralCurrent Sybols Pin
Jeremy Davis1-Feb-00 3:29
Jeremy Davis1-Feb-00 3:29 
GeneralRE: Current Sybols Pin
Jeremy Davis1-Feb-00 22:53
Jeremy Davis1-Feb-00 22:53 
Questionscope in iis 4 ? Pin
dharam17-Jan-00 2:46
dharam17-Jan-00 2:46 
GeneralA very basic question Pin
shahzad22-Nov-99 17:23
shahzad22-Nov-99 17:23 
GeneralRE: A very basic question Pin
Jeff Scott23-Nov-99 7:33
Jeff Scott23-Nov-99 7:33 
GeneralRE: RE: A very basic question Pin
shahzad30-Nov-99 6:14
shahzad30-Nov-99 6:14 
GeneralRE: RE: RE: A very basic question Pin
Tobey Unruh12-Mar-00 13:53
sussTobey Unruh12-Mar-00 13:53 
VBScript and JavaScript are just two of a multitude of programming/scripting languages out there. These are the two most widely used languages in web development.

Every language is roughly the same, however, the syntax is different. For example, to set a variable in VBScript you would write in your ASP:
MyVariable = 5
in JavaScript:
var MyVariable = 5;

You will notice there is a little more to do in JavaScript. One important, and very often overlooked, item is the semi-colon at the end of the line. In Java, JScript, and JavaScript (yes, they are all different) you have to terminate each line with a semi-colon.

The biggest difference if in syntax. Just remember that.

Hope it helps,
Tobey

==================
The original message was:

Thank you for your reply. I would also like to know what VB and javascripts are? What is there function?

==================
The original message was:

ASP is an acronym for Active Server Pages. This is a model by which a scripting language is used to create web pages.

These web pages contain script (usually VBScript or JavaScript) that is executed on the server. The purpose is to make your web pages interactive and not merely static information.

This discussion forum is written using ASP. However, you will not see any special coding because the script is executed at the server and not sent to the client.

This script can be used to accomplish a multitude of tasks, from updating or reading from a database or sending an email to modifying the servers file system (carefully).

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.