C# .NET - is there was any difference between asp.net & C#.net?

Asked By Deepak Samuel
07-Jan-12 05:40 AM
I'm confused ....please clear my doubt.I thought that asp.net is a technology & C# was a language used in it
  kalpana aparnathi replied to Deepak Samuel
07-Jan-12 05:48 AM
hi,

Points:

  1. C# and C#.NET are the same thing... C#
  2. .NET is, as you say, a library of code that .NET languages can talk to.
  3. .NET languages come in different flavours such as: C#.NET, VB.NET, Managed C++, F#.
  4. .NET languages compile to CIL ([Common Intermediate Language][1]) which means they all start "talking" the same language and can therefore interoperate.
  5. ASP.NET is the portion of the .NET library used for making web sites. There are other subsections of ASP.NET like WebForms (the old way of making web pages) or the rapidly maturing MVC library that are worth looking at too.
  6. Forms (old tech) or the new WPF (Windows Presentation Foundation) are the technologies you'd typically use in .NET to create what you know as traditional desktop applications.


  dipa ahuja replied to Deepak Samuel
07-Jan-12 05:49 AM
Simple :

C# Used to develop windows applications (for ex desktop appplication ms office which runs on single computer)

Asp.net Used to develop Website for ex yahoo.com even this eggheadcafe.com etc. Which can be accessed globally , Here asp.net contains two codes markup and the .cs code. markup we write the html tags, aspx tags etc. and the logic and the code related to the asp.net controls we can write inside the .cs file, and this .cs file is written in C#

Hope you get it
  Riley K replied to Deepak Samuel
07-Jan-12 05:55 AM


Asp.Net is a web Technology using which we develop web applications and these applications can be developed 
using different languages like C#.Net, VB.Net


You create event driven dynamic web pages using Asp.Net with code behind C#


ASP.Net is completely a Architecture where you have to understand about the stateless http and how the request goes to server and comes back to client. Different event occur during this process



Regards
  Suchit shah replied to Deepak Samuel
07-Jan-12 05:56 AM
C# is the language you use to do all your server side programming like interacting with a database, and consuming the .NET base class library/framework.
 
ASP.NET is the framework where you develop the web pages, this includes all the web and html controls, the rendering to HTML etc
 
So to create a dynamic site you will need both a server side language C#/VB.NET + ASP.NET for the web pages and its related framework for authentication, state and session management etc

You can develop a web site without the use of code behinds (C#/VB.NET) but that defeats the entire purpose of using ASP.NET unless you are developing a static web site.
  James H replied to Deepak Samuel
08-Jan-12 09:41 AM

VB.Net and C# are programming languages.

ASP.Net is a Web Development SDK/Framework.

You write code in a programming language and you use a SDK to speed up development.

.Net is a framework which you use when programming in vb.net, C# or any other language which can be compiled into msil.

Create New Account
help
USAR WPF(Windows Presentation Foundation) .NET Framework Hola, quisiera saber si puedo usar WPF (Windows Presentation Foundation) con VS2005 Team Edition para Software Architec?. y si es posible que debo instalar nueva herramienta parece muy interesante. VB.NET - Spanish Discussions Visual Studio 2005 (1) WCF (1) WPF (1) VB (1) November (1) Martínez (1) Architec (1) Entiendo (1) Entiendo que deberás de un vistazo al siguiente enlace: Visual Studio 2005 extensions for .NET Framework 3.0 (WCF & WPF), November 2006 CTP http: / / www.microsoft.com / downloads / details.aspx?FamilyId = F54F5537-CC86-4BF5-AE44
Windows Presentation Foundation (WPF) .NET Framework WPF Tutorial = = = = = = = = = = http: / / wpftutorial.blogspot.com / ASP.NET Discussions WPF (1) Windows (1) Cents (1) Why i am seening all google add's rather than tutorial. . . Exactly by the board since viewing the content is difficult. Just my 2 cents LS keywords: Windows, Presentation, Foundation, (WPF) description: WPF Tutorial = = = = = = = = = = wpftutorial.blogspot.com /
wpf sample Silverlight / WPF Hi, please give some basic wpf samples. . . . .because am new to wpf concept. . . . Windows Presentation Foundation (WPF) is the code-name of the presentation (user-interfaces) sub system in Windows .NET programming model. Windows Presentation Foundation (WPF) provides developers
windows presentation foundation host has encountered some problem windows presentation foundation host has encountered some problem need to close . we are sorry for inconvience - -> Whenever I double click upon this, WPF crashes with the following error message:Windows Presentation Foundation Host has encountered a problem and needs to close. It seems that this is a Visual Studio issue, not a WPF issue. So we can consider reconfiguring the Visual Studio. 1: Run- -> eventvwr, and see the
sample application Hi What is wpf? How it differs from wcf? Give me an sample application? Windows Presentation Foundation (WPF) is Microsoft’s latest technology for creating graphical user interfaces, whether they consist of plain forms, document-centric windows, animated cartoons, videos, immersive 3D environments, or all of the above! This is a technology User yet provide the kind of productivity that people enjoy with frameworks like window forms. WPF is a major component of the .NET Framework, starting with version 3.0. Creating UI using WPF Developing WPF UI is much more like building web UI than native Windows development. How to define