vote up 2 vote down star
1

I've been strictly in a C++ environment for years (and specialized statistical languages). Visual until 2001, and Borland since. Mostly specialized desktop apps for clients.

I'm not remaining willfully ignorant of it, but over the years when I've dipped into other things, I've spent my time playing around with javascript, Php, and a lot of Python.

Is "asp.net" the language? Is C# the language and "asp.net" the framework? What's a good answer to "What is asp.net"? Is there a correspondence between asp.net and anything I'd be familiar with in C++?

I know I can Google the same title, but I'd rather see answers from this crowd. (Besides, in the future, I think that google should point here for questions like that.)

flag

73% accept rate

11 Answers

vote up 4 vote down check

ASP.NET is a web application framework developed and marketed by Microsoft, that programmers can use to build dynamic web sites, web applications and web services. It was first released in January 2002 with version 1.0 of the .NET Framework, and is the successor to Microsoft's Active Server Pages (ASP) technology. ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language.

ASP.NET(Wikipedia)

That's on the second result searching on google so I'm guessing (half-expecting) that you don't understand what that means either.

Webpage development started with simple static HTML pages. That meant the client asked for a page by means of an url and the server sent the page back to him exactly as it has been designed. Sometime after that several technologies emerged in order to provide a more "dynamic" or personalized experience.

Several "server side languages" were developed (PHP, Perl, ASP...) which allowed the server to process the Web page before sending it back to the client. This way when a client requested a webpage the server could interpret the request, process it (for example connecting to a database and fetching some results) and send it back modifying the contents and making them "dynamic". The fact that the process took place on the server stands for the name of "server side".

So the original ASP (predecessor of the ASP.NET) was a server side language that was focused on serving web pages. In such way it supported several shortcuts such as the possibility to intercalate HTML and ASP source into the file which was on that time much popular due to PHP implementation. It was also (as most of these languages) a dynamic language and it was interpreted.

ASP.NET is an evolution of that original ASP with some improvements. First it does truly (try to) sepparate the presentation (HTML) from the code (.cs) which may be implemented by using Visual Basic or C# syntax. It also incorporate some sort of compilation to the final ASP pages, encapsulating them into assemblys and thus improving performance. Finally it has access to the full .NET framework which supports a wide number of helper classes.

So, summing up, it is a programming language located on the server and designed to make webpages.

link|flag
vote up 0 vote down

To the complainers:

What could possibly be bad about having a central location for lots of great information? ASP.NET as MS explains it can be a little harder to understand for a person who hasn't done any development before.

If it isn't a bad question, per se, leave it alone. Even if deep down someone is just mining for reputation points, who cares? Don't help turn the site into some type of competitive game. Share knowledge, even if it wasn't what the asker was really after--someone, at some point, will find that knowledge useful.

link|flag
vote up -2 vote down

Is this why SO was created? To answer questions that are already covered in various online resources? Why not ask Microsoft what ASP.NET is? Or wikipedia? Or google?

link|flag
vote up 0 vote down

@kibbee

I'm pretty much completely out of the loop on web development. Having messed around a little with php & javascript, I at least get the distinction of server/client applications, so I liked Jorge's description.

But, it's also my understanding that this place isn't supposed to be a message board, so I don't feel the need (and I don't think we're intended) to respond to everything. I'm still waiting to see what kind of middle ground this place occupies between a MB and a wiki.

link|flag
vote up 0 vote down

@wvdschel

We are supposed to ask questions. That's what this site is about. Eventually this stuff will end up on Google. Maybe Baltimark is just really out of the loop as far as web programming goes. I know I'm probably just as far out of the loop when it comes to linux desktop programming. Would it be a bad question if I asked what GTK was? We want this to be the site that people come here for answers.

link|flag
vote up 2 vote down

ASP.NET is a framework, it delivers:

  1. A class hierachy you hook into, that allows both usage of supplied components, as well as development of your own.
  2. Integration with and easy access to the underlying webserver.
  3. An event model, which is probably the "best" thing about it.
  4. A general abstraction from the underlying medium of HTML and HTTP.

Not sure if ASP.NET compares to any C++ frameworks you may be familiar with. Web frameworks usually tend to be unique due to the statelessness of HTTP and the relatively low-tech technologies involved (HTML, scripting, etc).

link|flag
vote up 2 vote down

This is just a question for a questions sake. Google or wikipedia could have told you this. Asking questions just hoping for up votes is frustrating to see.

link|flag
vote up 4 vote down

I was going to write a lengthy answer but I felt that Wikipedia had it covered:

ASP.NET is a web application framework developed and marketed by Microsoft, that programmers can use to build dynamic web sites, web applications and web services. It was first released in January 2002 with version 1.0 of the .NET Framework, and is the successor to Microsoft's Active Server Pages (ASP) technology. ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language.

So ASP.NET is Microsoft's web development framework. It's currently in version 3.5 (Service Pack 1 has just been released).

How do i get started? Check out the following resources:

link|flag
vote up -1 vote down

Take a look at MS' info for those who don't know or understand the platform.

http://www.asp.net/get-started/

link|flag
vote up 0 vote down

Let's say it's a technique from MS to build web applications. ASP stands for Active Server Pages, .NET is the framework behind it.

C# and VB.NET are the languages which can be used, but I guess other .NET languages also can be used.

link|flag
vote up 3 vote down

ASP.NET is the framework, just like .NET

The code itself, will be a mix of HTML, JavaScript(for Client-Side) and any .NET compatible language. So C#, VB.NET, C++.NET, heck...even IronPython

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.