Question:
Is asp.net an actual programming language?
anonymous
2007-05-17 15:17:29 UTC
I want to learn it but im confused here. I was looking at a sitepoint book which is titled "Build Your Own ASP.NET 2.0 Web Site Using C# & VB, 2nd Edition"

I don't understand why you would create a asp.net with c# and VB? Isn't asp a programming language and asp.net is kind of like the latest version.

Also do asp.net web pages end in aspx?
Nine answers:
Jason F
2007-05-17 15:22:49 UTC
I would consider it a language, it is basically the HTML of .NET
Rex M
2007-05-17 15:22:05 UTC
ASP.NET is the web-oriented framework in which c# or VB.NET web applications are delivered. ASP.NET is the over-arching term for the whole set of technologies and languages, which includes:



ASP.NET markup (essentially XML) which defines the HTML output of the application (the aspx files);



The programming code/functionality (usually c# or VB.NET), commonly known as the code-behind;



And the built-in controls and systems provided by the .NET libraries, such as Page, TextBox, the PostBack model, ViewState, etc.



And yes, ASP.NET pages often end in .aspx. However, that is not absolute; an ASP.NET page could end in .supercoolpageextension if you want; it's simply a matter of configuring which extensions in IIS are handled by the .NET engine.
anonymous
2007-05-20 04:35:32 UTC
No it is not a programming language. It is a Microsoft technology used to build web applications.



Building web applications with ASP.NET means that you will have to choose a .NET language like c# or VB.NET to work with.



The latest version of ASP.NET is ASP.NET where the programming language you choose targets the .NET framework V 2.0.



Yes, ASP.NET pages have an ASPX extension.



hope this helps.
Smutty
2007-05-18 01:03:55 UTC
No it is not a programming language. It is a Microsoft technology used to build web applications.



Building web applications with ASP.NET means that you will have to choose a .NET language like c# or VB.NET to work with.



The latest version of ASP.NET is ASP.NET where the programming language you choose targets the .NET framework V 2.0.



Yes, ASP.NET pages have an ASPX extension.



hope this helps.
Senthil S
2007-05-21 04:48:00 UTC
ASP.NET is a language used to develop webpages. Each asp file has two pages. One for design(Presentation) and another for logical code(Application). The designing page generally ends with .aspx. With .NET we can write the logical code in VB.NET, C#.NET or J#. These files are called code behind files. With out these code behind files we cannot achieve the logic.
ask.earn.tk
2007-05-18 02:06:36 UTC
ASP.NET is a combination of the language ASP and

C#/C++ code written on top of .NET framework

The next version of ASP.NET is going to be called as

APLIS.NET
anonymous
2016-10-05 10:48:41 UTC
in the commencing up, there have been very low-point languages, that have been complicated via fact we hadn't had time to advance something less demanding. As time went on, extra languages have been geared up utilising those decrease point languages. those borrowed concepts from the others to make issues less demanding to hold close for former programmers, and because it advance into widely used to the creators. Now, there are some fairly uncomplicated to hold close languages, and there are extra complicated ones. It has to do plenty with versatility and what the purpose of the language is.
Buda d
2007-05-17 15:27:07 UTC
.ASP.NET uses VB and/or C#. So ASP.NET is basically a cocktail of languages. asp.net pages generally do end with an aspx
anonymous
2007-05-17 15:26:42 UTC
ASP.Net refers to the front end / gui components of the page (like HTML controls) whereas C# is used for the code behind (event handlers, logic, etc).


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...