Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "asp.net" mean?

Tags:

asp.net

I know asp stands for Active Server Pages but wondering if "Active Server" means anything actually?

like image 849
Sesh Avatar asked Jan 25 '09 03:01

Sesh


People also ask

What does ASP.NET stand for?

ASP stands for Active Server Pages. ASP is a development framework for building web pages. ASP supports many different development models: Classic ASP.

What is ASP.NET and why use it?

ASP.NET is a free web framework for building great websites and web applications using HTML, CSS, and JavaScript. You can also create Web APIs and use real-time technologies like Web Sockets. ASP.NET Core is an alternative to ASP.NET. See the guidance on how to choose between ASP.NET and ASP.NET Core.

Is ASP.NET the same as C#?

Basically, ASP.NET is a web delivery mechanism that runs either C# or VB.NET in the background. C# is a programming language that runs ASP.NET as well as Winforms, WPF, and Silverlight.

What is ASP.NET in C#?

ASP.NET is a web application framework developed and marketed by Microsoft to allow programmers to build dynamic web sites. It allows you to use a full featured programming language such as C# or VB.NET to build web applications easily.


1 Answers

ASP.NET pages aren't static; they have executable, server-side code behind them that may dynamically generate page content or interact with the serving system—they're active (web) server pages.

like image 126
core Avatar answered Nov 16 '22 03:11

core