answersLogoWhite

0


Best Answer

In some ways they are and on other ways they are different. They are all technologies for creating things in computing. Javascript and Visual BASIC are programming languages, whereas Dreamweaver is an application for creating websites. Javascript is particularly used for programming on websites, linking it to Dreamweaver, whereas Visual BASIC is used for general programming.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Are the following interrelated VisualBasic Dreamweaver Javascript?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why is Adobe Dreamweaver called Adobe Dreamweaver?

It's a metaphor. A dreamweaver catches dreams. You weave them into what you want them to be. As if the program were your Dreamweaver for web design. Weave your dreams.. Make the website.. of your dreams.. Following me? xD (should be obvious, though..)


Who created dreamweaver?

it was created by Cher in 1997 following photoshop in 2001


How do you create a simple JavaScript message inside the HTML?

You need to type the following code to create a simple JavaScript message inside the HTML


How do you add a click event to a java button?

we can do this using of javascript. you can use this following code: <input type=button value="button" onClick=onclick_function()> here onclick_function() is a function which is called by javascript on clicking the button. javascript code is as follows: <script language="javascript" type="text/javascript"> // your code for onclick_function() function onclick_function(){ alert("Welcome to javascript"); } </script>


Which of the following occupations requires knowledge of HTML or JavaScript to produce a website?

web designer


How do you make ajava script file?

JavaScript files can be created with the extension .js Note that an accompanying HTML file must reference it in order for it to run as JavaScript. You can include the file in your HTML document by adding the following to the head or body of the document: <script type="text/javascript" src="myJavaScriptFile.js"></script> Replace myJavaScriptFile.js with the file name of your JavaScript file.


When readers of audience members see a play they find themselves following a narrative or a sequence of interrelated events also known as?

Plot


How do you put a JavaScript variable into the value of a HTML text box?

If your text box has the ID foo and your JavaScript variable is named bar, then you can use the following code to put the value of the variable into the text box:document.getElementById("foo").value=bar;


How do you add snow flakes in a site?

You can use the following JavaScript to add Snowflakes widget in any site / blog .


What programs can assist in building a website?

The following programs can assist users in building a website: Macromedia's Dreamweaver, Microsoft's Frontpage, Arachnophillia, NVU, and Serif WebPlus SE.


How to do Clientside validation in struts?

check the following site. http://www.devarticles.com/c/a/JavaScript/Validators-Introducing-Struts-Validator-Framework/1/


Does punctuation matter to the compiler?

Definitely! Some compilers and languages are more forgiving but all computer languages that I know of care about punctuation.For example:in Javascript it is ok to not have a semicolon at the end of a line but in Java it is required. So the following is ok in Javascript but not in Java:a = 5but Javascript still cares about punctuation, so the following would be invalid:a = 5!Of course it would be possible to create a programming language which ignored all punctuation (so ",!a; = :5?" would mean the same as "a = 5") but why would you want to?