ASP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingASP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old October 16th, 2002, 07:27 AM
adurstew's Avatar
adurstew adurstew is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Location: Charlotte, NC
Posts: 114 adurstew User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 m 33 sec
Reputation Power: 6
Send a message via AIM to adurstew Send a message via Yahoo to adurstew
Question ASP vs .NET

What are the up's and downs? Is it worth moving to .NET?
__________________
Andrew J Durstewitz
ASP.NET,VB.NET,SQL Developer

http://madashellnc.blogspot.com

Reply With Quote
  #2  
Old October 16th, 2002, 09:49 AM
James Yang James Yang is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Apr 2002
Location: Atlanta, Georgia
Posts: 284 James Yang User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 m 45 sec
Reputation Power: 7
Send a message via ICQ to James Yang
Advantages of .NET
- Object oriented - inheritance - MOST USEFUL!!!
- uper fast (if you code it right) - its as fast as ISAPI written in C++
- Native connection to MS SQL Server, Oracle etc ( 2 X faster than oledb connection)
- Compiled ( ASP is interpreted like php. = SLOW)
- Better library of tools. ASP you are limited to VBscript functions. With, asp.net you have access to whole .NET framework
- You don't have to worry about client side ode that much. Eg, in asp validating a textbox can be a pain in the arse. In asp.net just just specify the "rule" its validated against, and .net does it all for you. If they detect IE, they use javascript client validatoin to speed tings up and if its netscape then they just use server validation.
- Code behind. = complete separation of biz logic and rpesentation code
- Event driven. so you can use things like - OnClick, OnChange etc
- XCOPY Deployment. Even if oyu have a component, you just need to copy it. no registry involved. (unless u wanna install in in GAC)
- Better suport for XML ( including soap hence web service)
- Language independent - use whatever youfeel most comfortable with


Disadvantages - none really. It cost about the same as asp, and its easier to code and it runs faster. Maybe the fact that asp.net host are for somereason more expensive than jsut asp ones.. (dunno why..both runs on IIS)
__________________
Regards,

James Yang
.NET Developer / Network Engineer
MCSE, MCDBA, MCSA, CCNA

http://www.yellowpin.com/
http://www.opentechsupport.com/

Reply With Quote
  #3  
Old October 16th, 2002, 10:38 AM
adurstew's Avatar
adurstew adurstew is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Location: Charlotte, NC
Posts: 114 adurstew User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 m 33 sec
Reputation Power: 6
Send a message via AIM to adurstew Send a message via Yahoo to adurstew
Thanks

James,

Hey look at that, we can agree on something! ( the linux argument, heh..)

Anyway, that sounds great. Those where some of the reasons that I was looking into .NET in the first place. I think that I am going to start working with it as soon as I can.

However, I am an avid user of Dreamweaver. Do you think this is still a worthy tool when it comes to .NET?

Thanks,

Reply With Quote
  #4  
Old October 16th, 2002, 11:04 AM
James Yang James Yang is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Apr 2002
Location: Atlanta, Georgia
Posts: 284 James Yang User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 m 45 sec
Reputation Power: 7
Send a message via ICQ to James Yang
Im not sure..i don't use WYSIWYG editor for html. I hard code it cuz they add all sorts of tags that makes it harder to main tain. But, dw mx is better than vs.net in that area..editing html pages. use both

Reply With Quote
  #5  
Old October 16th, 2002, 04:55 PM
bbolte bbolte is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Sep 2002
Posts: 11 bbolte User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
check out the FREE web matrix from asp.net, it is from MS and it is getting great reviews so far. but it is free, rights asp.net only (i believe C#).

Reply With Quote
  #6  
Old October 16th, 2002, 06:18 PM
aspnewbie aspnewbie is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Apr 2002
Location: The Great White North
Posts: 361 aspnewbie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 58 m 50 sec
Reputation Power: 7
Send a message via MSN to aspnewbie
What's involved in getting .Net to run? Is there an SDK that needs to be installed? Has anyone experienced any problems as a result of this installation?

Does .Net require SQL Server 2000 or will it work on SQL Server 7?

Reply With Quote
  #7  
Old October 16th, 2002, 06:47 PM
bbolte bbolte is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Sep 2002
Posts: 11 bbolte User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
the .net framework has to be installed. IIS has to be running, you don't necessarily need SQL 2000.

Reply With Quote
  #8  
Old October 16th, 2002, 06:53 PM
aspnewbie aspnewbie is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Apr 2002
Location: The Great White North
Posts: 361 aspnewbie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 58 m 50 sec
Reputation Power: 7
Send a message via MSN to aspnewbie
Bill,

What's involved in installing the .net framework? I've been on the microsoft site a couple of times and I still confused out (call me thick!)

Last edited by aspnewbie : October 16th, 2002 at 06:57 PM.

Reply With Quote
  #9  
Old October 16th, 2002, 06:57 PM
bbolte bbolte is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Sep 2002
Posts: 11 bbolte User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0

Reply With Quote
  #10  
Old October 16th, 2002, 07:03 PM
aspnewbie aspnewbie is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Apr 2002
Location: The Great White North
Posts: 361 aspnewbie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 58 m 50 sec
Reputation Power: 7
Send a message via MSN to aspnewbie
okay thanks. I see I need Windows 2000 Professional, XP Professional or .Net Server

Reply With Quote
  #11  
Old October 16th, 2002, 09:09 PM
James Yang James Yang is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Apr 2002
Location: Atlanta, Georgia
Posts: 284 James Yang User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 m 45 sec
Reputation Power: 7
Send a message via ICQ to James Yang
.net works with sql server 7 too!

Just install the .net framework SDK which contains all the compilers and documentations. And when you are running the app you just need .net framework and the compiled version of apps

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingASP Development > ASP vs .NET


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway