J
Jason
Will just getting VB.net allow me to make asp server pages, or web
applications? Or do I need the whole suite?
applications? Or do I need the whole suite?
All you need to make ASP.NET pages is a text editor (such as Notepad) or a
development tool (such as Visual Studio 2005 or Visual Web Developer) and
the compiler for whichever .NET language you decide to use (if you are using
a development tool this probably came with it). ASP.NET is not really a
language at all, but a subset of the classes in the .NET Framework that are
used to generate web pages. The most common .NET languages used to write
ASP.NET applications are VB.NET and C#.NET. In fact, you can actually use
both in the same application (although they will have to be compiled into
different assemblies). Hopefully this information answers your question, if
I misunderstood what you were asking, let me know and I will try to give a
better answer.