473,657 Members | 2,505 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What is ASP.net

aaj
Hi all

can I ask a genuine question (by that I mean I'm not trolling)

We are a small company and for a few years we have been building internal
web apps in ASP connecting to databases etc.

We see that just about everyone is moving to .net, but I'm curious about
practicle reasons for doing this.

I have read some marketing stuff and seen references better scalability, XML
and other things, but what I am trying to find out is what the
differences/improvements a user would see.

What would be great is if someone could point to a web site built in .NET
that does things that wern't possible in ASP/JAVA/Javascript etc.

many thanks

Andy


Nov 18 '05 #1
5 1168
aaj
PS

I've just found a thread below on a similar vain, so I'll read that
first...sorry for being lazy 8-)
"aaj" <aa*@aaj.com> wrote in message
news:41******** *************** @news.easynet.c o.uk...
Hi all

can I ask a genuine question (by that I mean I'm not trolling)

We are a small company and for a few years we have been building internal
web apps in ASP connecting to databases etc.

We see that just about everyone is moving to .net, but I'm curious about
practicle reasons for doing this.

I have read some marketing stuff and seen references better scalability,
XML and other things, but what I am trying to find out is what the
differences/improvements a user would see.

What would be great is if someone could point to a web site built in .NET
that does things that wern't possible in ASP/JAVA/Javascript etc.

many thanks

Andy

Nov 18 '05 #2
Hi There,

The easy answer would be, there is no spectacular reason to go .NET.

But in the future you should definately look into it. Especially when
developing new projects. Since the .NET revolution in the Microsoft
world will help you become more organized (Objectoriented dev, more
strict typing than ASP) and use more already working
webcontrols (DataGrid, DataList, Repeater). It is said to help you
accomplish more in less time. I have some objections on that, but it
depends on who youre asking.

You also have the new ADO.NET which makes it easier/simpler creating
data components, and binding them through datasets and managers to
other webcontrols.

To the enduser, there is no real difference. The result is still a
text-based HTML page.

To summarize, if you have the time and money, you should consider doing
it in .NET rather than ASP. Same thing if you consider upgrading
projects from ASP to Asp.NET.

aaj wrote:
Hi all

can I ask a genuine question (by that I mean I'm not trolling)

We are a small company and for a few years we have been building internal
web apps in ASP connecting to databases etc.

We see that just about everyone is moving to .net, but I'm curious about
practicle reasons for doing this.

I have read some marketing stuff and seen references better scalability, XML
and other things, but what I am trying to find out is what the
differences/improvements a user would see.

What would be great is if someone could point to a web site built in .NET
that does things that wern't possible in ASP/JAVA/Javascript etc.

many thanks

Andy

--

+============== =============== =============== =============== ===========+
| SparrowHawk The Magician |
| |
| |
| |
| |
+============== =============== =============== =============== ===========+
| e-mail: sparvhok[NOSPAM]hotmail.com |
+============== =============== =============== =============== ===========+
To send me an email, replace the [NOSPAM] tag with @ sign.
Nov 18 '05 #3
> I have read some marketing stuff and seen references better scalability,
XML
and other things, but what I am trying to find out is what the
differences/improvements a user would see.
A user would see no difference. HTML is HTML, and on the client side, that's
what both ASP and ASP.Net produce.

There are so many differences between ASP and ASP.Net that it would take
several pages to describe all of them. ASP is procedural. ASP.Net is
Object-Oriented. ASP is interpreted scripting. ASP.Net is compiled
programming. ASP can do very little. ASP.Net can do very much. ASP can be
extended using COM. ASP.Net uses .Net assemblies instead, and needs no
extension, as there is nothing you can't do with it. When using COM and
replacing components, it is necessary to reboot the web server after
installing COM DLLs and registering them in the System registry. .Net DLLs
do not require any reboot on the server, and can be installed by simply
copying files.

So much for scratching the surface. I could go on, but I have work to do.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
"aaj" <aa*@aaj.com> wrote in message
news:41******** *************** @news.easynet.c o.uk... Hi all

can I ask a genuine question (by that I mean I'm not trolling)

We are a small company and for a few years we have been building internal
web apps in ASP connecting to databases etc.

We see that just about everyone is moving to .net, but I'm curious about
practicle reasons for doing this.

I have read some marketing stuff and seen references better scalability, XML and other things, but what I am trying to find out is what the
differences/improvements a user would see.

What would be great is if someone could point to a web site built in .NET
that does things that wern't possible in ASP/JAVA/Javascript etc.

many thanks

Andy

Nov 18 '05 #4
Hi Andy,

I am a developer for a company (mid-sized in the US, large world-wide) and
my full time job is building internal web apps. Besides performance, ease
and speed of development, one of ourmajor motivations for moving to .NET from
ASP/JAVA/Javascript/COM has been integration with other MS apps (Sharepoint,
CMS Server, Office, etc). Everytime we turn around, we're told or we read,
'Well if you want to (whatever) with (this application), it has to be in
..NET.'

Michael Geist
MCSD

"aaj" wrote:
Hi all

can I ask a genuine question (by that I mean I'm not trolling)

We are a small company and for a few years we have been building internal
web apps in ASP connecting to databases etc.

We see that just about everyone is moving to .net, but I'm curious about
practicle reasons for doing this.

I have read some marketing stuff and seen references better scalability, XML
and other things, but what I am trying to find out is what the
differences/improvements a user would see.

What would be great is if someone could point to a web site built in .NET
that does things that wern't possible in ASP/JAVA/Javascript etc.

many thanks

Andy


Nov 18 '05 #5
> We see that just about everyone is moving to .net, but I'm curious
about practicle reasons for doing this.
There are too many to really mention. But here is some of my thoughts.
Take them for what you will.

Development time can be cut tremendously. I admit, when I first
switched it was a royal pain, and the project took longer than if I
could have just developed it with classic ASP. But in the long run
it's a) easier to find developers who know .NET or are willing to
program .NET over classic VB/ASP, and b) .NET applications have a far
shorter development time.

This may seem trivial, but I assure you it's not. One of the main
reasons I enjoy .NET so much over classic ASP, is the ease of testing
and deploying my applications. No registering DLLs. No unloading DLLs
from memory just so you can recompile and retest. This make it easier
to build multi-tier applications.
What would be great is if someone could point to a web site built in
.NET
that does things that wern't possible in ASP/JAVA/Javascript etc.


One of the things you can do in ASP.NET that you can't do in ASP or
Java is develop applications without a lot of extra coding. Say you
want to validation on your web form. A required field here, a
telephone number field there, etc. Instead of writing javascript for
each field, you instead just drop a validation control on the page and
specify "FieldA" is required. Drop on another validation control and
say, "FieldB" should be a valid email address. There are many examples
to this effect.

Then there is the development tool. Visual Studio.NET 2003 is far
better IDE than classic Visual Studio ever was, especially with regards
to building web forms. The code-behind allows seperation of interface
(HTML) and code (VB.NET), is simply good design.

The best part is you can start developing in .NET without a significant
upgrade to your company's technology. Other than training the
developers, and purchasing a new IDE (or using some of the free ones),
just install the .NET framework on your web server and you're ready to
go.

After working with .NET for over 3 years I would never (ever) go back
to classic ASP.

Couple of articles that compare ASP and ASP.NET
http://www.asp101.com/articles/chris...et/default.asp
http://www.w3schools.com/aspnet/aspnet_vsasp.asp

To get your started
http://www.dotnetjunkies.com/quickstart/aspplus/
http://msdn.microsoft.com/vbasic/att...s/default.aspx
http://www.asp.net/Default.aspx?tabindex=0&tabid=1
http://www.intranetjournal.com/artic...01_31_01a.html
http://msdn.microsoft.com/academic/t...rt_vcsharp.asp

Alternative .NET IDEs (For serious coding I recommend VS.NET 2003)
http://www.sys-con.com/webservices/a...int.cfm?id=360 <-- For die
hard techies
http://www.asp.net/webmatrix/default...dex=4&tabId=46 <-- For
the beginner
http://www.icsharpcode.net/OpenSource/SD/ <-- Open Source IDE

Nov 18 '05 #6

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

Similar topics

2
3077
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 burns. Here is the code: $frank = "burns";
220
18999
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 any preconceived ideas about it. I have noticed, however, that every programmer I talk to who's aware of Python is also talking about Ruby. So it seems that Ruby has the potential to compete with and displace Python. I'm curious on what basis it...
699
33863
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 capabilities, unfortunately. I'd like to know if it may be possible to add a powerful macro system to Python, while keeping its amazing syntax, and if it could be possible to add Pythonistic syntax to Lisp or Scheme, while keeping all of the...
92
6443
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? cheers, reed
137
7053
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 pragmatic - 3) I usually move forward when I get the gut feeling I am correct - 4) Most likely because of 1), I usually do not manage to fully explain 3) when it comes true. - 5) I have developed for many years (>18) in many different environments,...
12
11146
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 { public: string desc;
125
14702
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 software giant such as Microsoft SQL Server, Oracle, and Sybase? Is PostgreSQL reliable enough to be used for high-end commercial application? Thanks
47
9126
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
10024
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 support IDEs are DreamWeaver 8 and Zend PHP Studio. DreamWeaver provides full support for Unicode. However, DreamWeaver is a web editor rather than a PHP IDE. It only supports basic IntelliSense (or code completion) and doesn't have anything...
8
3144
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 basically entitled to us to just about every .Net development tool you can imagine. I cant even begin to mention them. To begin with, my background is not that of a programmer, but a systems engineer and the closest I have come to "programming"...
0
8392
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8305
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8732
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6163
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4151
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4302
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1953
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.