473,398 Members | 2,525 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

What is ASP.NET?

have a lot of questions about ASP.Net.

1. What products do I need from Microsoft to develop and run ASP.NET

As background, I currently use Visual InterDev to make ASP applications deployed on IIS/Windows 2000 Server

2. What changes do I need to make on my desktop to start developing in ASP.NET?

3. What is the ASP.NET resource kit that microsoft is promoting? (http://msdn.microsoft.com/asp.net/asprk/)

4. What business problems will ASP.NET help solve that good ol' ASP 5.0 could not solve

Sometimes, I suspect that ASP.NET is a hoax. I think I understand why .NET is a unifying concept for Windows-level development, but web development is aimed at running on browsers, not the Windows OS. I guess I can see that as the browser and the rest of the OS merge, there will be increasingly sophisticated things we can do in browsers using .NET or other web services. To me, these opportunities are futuristic and not worth the cost of pioneering now. I feel web technology already has reached a point where it doesn't need to be taken to a whole new level. It is pretty cool as-is

As always, I will immensely appreciate the time people take to read and comment

Regards
Dan Allen
Jul 21 '05 #1
2 1611
> 1. What products do I need from Microsoft to develop and run ASP.NET?

The .NET Framework (free download from MS, also included in XP SP 1) is
needed to run applications written for .NET. You can actually develop with
a text editor and compile at the command line with the SDK (also free
download).

Visual Studio .NET is the premiere development tool, but can be pricey.
There are lower cost tools (some for free [WebMatrix], but some may lack all
the built-in stuff that VS.NET has.
As background, I currently use Visual InterDev to make ASP applications deployed on IIS/Windows 2000 Server. 2. What changes do I need to make on my desktop to start developing in ASP.NET?

Forget everything you know about VID, Classic ASP, VB 6.0 and VBScript.
Well, *some* of your VB 6.0 (if you have it) skills may be useful, but
VB.NET is NOT VB 6.0 and VBScript is gone. The architecture of ASP.NET is
COMPLETELY DIFFERENT from Classic ASP as well.

As for desktop changes, see my answer to question #1.
3. What is the ASP.NET resource kit that microsoft is promoting? (http://msdn.microsoft.com/asp.net/asprk/)

I just downloaded and installed that today. It's like an addition to the
original SDK, but not something you need to begin developing.
4. What business problems will ASP.NET help solve that good ol' ASP 5.0 could not solve?

Well, I don't know about ASP 5.0 (since there was no 5, only 1, 2 & 3), but
ASP.NET differs in so many ways:

You are working with completely compiled code (no more scripts) so:
MUCH better performance and scalability
Early Binding
Strongly Data Typed development language

You are working with full inheritance now so:
You can create page classes that inherit from a standard page template

The .NET Framework Base Class Library has over 10,000 classes in it so it is
much easier to get code up and running and you'll spend less time
re-inventing the wheel.

NO MORE .DLL HELL!!

You don't have to take your web server off-line to make an update to a
component

IIS 6.0 (which is a required upgrade) & the .NET Framework CLR handle
session state, caching and security much better.

Your programming code and your resulting HTML are written into different
source code documents so no more spaghetti code.

VS.NET (if you use it) is leaps and bounds above Visual InterDev in terms of
its stability, debugging and other features.

A rich and full set of controls that have server-side events but render as
HTML to the client.

....Just to name a few things...

Sometimes, I suspect that ASP.NET is a hoax. I think I understand why

..NET is a unifying concept for Windows-level development, but web
development is aimed at running on browsers, not the Windows OS. I guess I
can see that as the browser and the rest of the OS merge, there will be
increasingly sophisticated things we can do in browsers using .NET or other
web services. To me, these opportunities are futuristic and not worth the
cost of pioneering now. I feel web technology already has reached a point
where it doesn't need to be taken to a whole new level. It is pretty cool
as-is.

"web development is aimed at running on browsers, not the Windows OS"

I wouldn't say that at all. ASP.NET is ALL ABOUT server-side programming
and processing of your code (actually so was Classic ASP). The output of
all that processing is what the browser receives and deals with. Don't get
me wrong, the client is capable of doing some very good things, but
connecting to network resources from the client is not one of them. Also,
because we don't want to have to update everyone's pc when we update our
application, server based code is (and has been) where most enterprise
development has been and is going.

Listen..."If it aint broke, don't fix it." If you don't have a need for
what .NET offers, don't jump to it because it's here. But, if you take the
time to look at the performance gains and developmental gains, I think
you'll see that ASP.NET is not a gimmick, it is a long awaited liberation
for web developers.

But, asking the questions you have asked here is a good beginning down the
..NET road!

Good luck!


Jul 21 '05 #2
Dan Allen wrote:
have a lot of questions about ASP.Net.

1. What products do I need from Microsoft to develop and run ASP.NET?
The essentials are free.
http://www.asp.net/Default.aspx?tabindex=0&tabid=1

However, the intellisense with ie VB.NET is great. I recommend going with
some flavor of Visual Studio .NET. (I started with the free downloads and
became an MSDN Univeral subscriber. <g> )
4. What business problems will ASP.NET help solve that good ol' ASP
5.0 could not solve?
Nothing, in the sense that ASP didn't solve any problems that assembly
language couldn't solve. ;-) All it takes is some time to write & debug
the appropriate code. <g>

ASP.NET does much more of the "dirty work" behind the scenes than ASP. You
can concentrate on solving the business problems and let .NET handle the
details. I started programming in the 1970's and I'm truly impressed with
the power of the .NET platform. If you choose VB.NET (and maybe C#, I don't
know, I have no personal experience) all the programming goes in "Code
behind" pages instead of intermingled with the HTML as in ASP. This is a
/very/ good thing. ;-)

I realize that .NET is MS's attempt to dominate the web as they've dominated
the desktop. I know that competition is good, so I cheer Java and MySQL and
Linux and all the rest. But I'm working on the initial phases of a large
database project and after careful consideration chose VB.NET, SQL Server
2000 and Windows Server 2003 as the plaforms. (My prior experience includes
Informix and DB2 databases.) The MS tools work very well together and let
me get done the maximum in a minimum of time.
As always, I will immensely appreciate the time people take to read
and comment.


Hopefully my comments are helpful. I got my MSDN Universal subscription
from EBay and have been very satisfied.

-- Mark
Jul 21 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: thecrow | last post by:
Alright, what the hell is going on here? In the following code, I expect the printed result to be: DEBUG: frank's last name is burns. Instead, what I get is: DEBUG: frank's last name is...
220
by: Brandon J. Van Every | last post by:
What's better about Ruby than Python? I'm sure there's something. What is it? This is not a troll. I'm language shopping and I want people's answers. I don't know beans about Ruby or have...
699
by: mike420 | last post by:
I think everyone who used Python will agree that its syntax is the best thing going for it. It is very readable and easy for everyone to learn. But, Python does not a have very good macro...
92
by: Reed L. O'Brien | last post by:
I see rotor was removed for 2.4 and the docs say use an AES module provided separately... Is there a standard module that works alike or an AES module that works alike but with better encryption?...
137
by: Philippe C. Martin | last post by:
I apologize in advance for launching this post but I might get enlightment somehow (PS: I am _very_ agnostic ;-). - 1) I do not consider my intelligence/education above average - 2) I am very...
12
by: Dario | last post by:
The following simple program behaves differently in Windows and Linux . #include <stdexcept> #include <iostream> #include <string> using namespace std; class LogicError : public logic_error {...
125
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
47
by: Neal | last post by:
Patrick Griffiths weighs in on the CSS vs table layout debate in his blog entry "Tables my ass" - http://www.htmldog.com/ptg/archives/000049.php . A quite good article.
121
by: typingcat | last post by:
First of all, I'm an Asian and I need to input Japanese, Korean and so on. I've tried many PHP IDEs today, but almost non of them supported Unicode (UTF-8) file. I've found that the only Unicode...
8
by: Midnight Java Junkie | last post by:
Dear Colleagues: I feel that the dumbest questions are those that are never asked. I have been given the opportunity to get into .NET. Our organization has a subscription with Microsoft that...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.