473,383 Members | 1,759 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,383 software developers and data experts.

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 1158
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.co.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.co.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
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...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...

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.