Difference between Javascript and ASP.net

What is the difference between Javascript and ASP.net?

+4
source share
2 answers

Javascript is a scripting language that runs in the browser, while ASP.net runs on the server and is the basis for running web applications (you can compare it with JSP, ColdFusion, etc.). That's exactly what you know ... there are versions of ServerSide JavaScript (for the older ones among us ..... remember Netscape LiveWire?)

You can use Javascript with ASP.NET

+13
source

The main and main difference: javascript is a browser-based scripting language, and ASP is a server-side scripting language.

0
source

Source: https://habr.com/ru/post/1312131/


All Articles