Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - ASP is better then ASP.NET
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

ASP is better then ASP.NET

 Post Reply Post Reply Page  <12
Poll Question: What do you like?
Poll Choice Votes Poll Statistics
39 [54.17%]
33 [45.83%]
You can not vote in this poll

Author
dpyers View Drop Down
Senior Member
Senior Member


Joined: 12 May 2003
Status: Offline
Points: 3937
Post Options Post Options   Thanks (0) Thanks(0)   Quote dpyers Quote  Post ReplyReply Direct Link To This Post Posted: 20 May 2004 at 1:33am

I'd have to agree with you on that one michael. ASP is basically linear programming. It's a mindset change to go to OO. I saw a lot of people move from C to C++ who basically never used the capabilities of C++. They just kept coding in C, but in a different environment.

I do the hardcore stuff in C#, but the quick & dirties are still vb.

One of the things I really like about asp.net is the ability to build user controls. Watched one of the vb.net movies tonight at msdn and built an ftp control. Instead of using the slower http protocol for up/downloads, I now have a control that uses the much faster ftp protocol that I can include in any project.

But rather than argue the relative merits of asp vs asp.net, try it out for yourself. pmormr posted a link to michaels site for getting a free copy from MS. The freebie is sent to US/Canadian address only though.
Link at: http://forums.webwiz.net/forum_posts.asp?TID=10 531



Edited by dpyers

Lead me not into temptation... I know the short cut, follow me.
Back to Top
zMaestro View Drop Down
Senior Member
Senior Member


Joined: 11 May 2003
Location: Egypt
Status: Offline
Points: 1183
Post Options Post Options   Thanks (0) Thanks(0)   Quote zMaestro Quote  Post ReplyReply Direct Link To This Post Posted: 20 May 2004 at 1:51am

I see Bluefrog is the more reasonable...

Originally posted by <SPAN =bold>Bluefrog </SPAN> Bluefrog wrote:

That's the thing, when you can do 'most' things in ASP there is little incentive to switch.

No one can say ASP is better than ASP.Net
like (in my opinion) No one can say ASP is better than PHP...
it depends on the developer, and how can he uses his knowledge to reach what he wants...

and as Bluefrog said:

Originally posted by <SPAN =bold>Bluefrog </SPAN> Bluefrog wrote:

Try creating a ZIP file with ASP. It's simple with .NET.

Back to Top
zonelinks View Drop Down
Newbie
Newbie


Joined: 29 April 2004
Status: Offline
Points: 15
Post Options Post Options   Thanks (0) Thanks(0)   Quote zonelinks Quote  Post ReplyReply Direct Link To This Post Posted: 24 May 2004 at 3:22am
I know ASP..but can anybody clearly inform me the most important features of ASP.net.......

-------------------------
http://www.zonelinks.com
-------------------------
The Power Link Dimension
Back to Top
Bluefrog View Drop Down
Senior Member
Senior Member


Joined: 23 October 2002
Location: Korea, South
Status: Offline
Points: 1701
Post Options Post Options   Thanks (0) Thanks(0)   Quote Bluefrog Quote  Post ReplyReply Direct Link To This Post Posted: 24 May 2004 at 11:49am

Originally posted by zonelinks zonelinks wrote:

I know ASP..but can anybody clearly inform me the most important features of ASP.net.......

MASSIVE god-like power.

Back to Top
Mart View Drop Down
Senior Member
Senior Member
Avatar

Joined: 30 November 2002
Status: Offline
Points: 2304
Post Options Post Options   Thanks (0) Thanks(0)   Quote Mart Quote  Post ReplyReply Direct Link To This Post Posted: 24 May 2004 at 12:37pm

Other performance tools also help you improve execution times of your programs, these include:

Pre-compiled code. ASP is not compiled. It is interpretted every time you request the page. In ASP.NET the first time the program is run the JIT (Just In Time) compiler will compile the program. After that when the program is executed is will run the compiled version which is a lot faster will be executed instead. (It will also be compiled by JIT if the original source has been modified since it was last compiled).

Caching services. Every time you request a ASP page all elements are processed again even if they havent changed. With ASP.NET you can use things like Data Caching to speed up execution. Say you had an application that listed all employees in a table (datagrid), this data will rarely change so there is no need to connect to the database server everytime and ask for a list of employees. data caching works similar to this:

  1. Your code checks if the employees data has already been cached.
  2. If the employees data has not been cached you request the data from your database then cache it using a method similar to Session(). You can also set a time for it to expire.
  3. If the employees data has already been cached you can load all the data direct from the memory - saving a trip to the database.
  4. Display either the cached DataSet (similar in some ways to a recordset) or the DataSet direct from the sever in your table (datagrid).

Also ASP.NET speeds up development time LOADS.

I remember the days when I had to Response.Write() table's, columns and rows. Now all I do is drag and drop a datagrid, change the style and headers and write some simle logic that fills the datagrid with my data.

You really cannot compare ASP and ASP.NET IMHO

Back to Top
Mart View Drop Down
Senior Member
Senior Member
Avatar

Joined: 30 November 2002
Status: Offline
Points: 2304
Post Options Post Options   Thanks (0) Thanks(0)   Quote Mart Quote  Post ReplyReply Direct Link To This Post Posted: 24 May 2004 at 12:50pm

But as Bluefrog said, it has GOD-LIKE power...

You can download amazingly powerful components that do a variety of things - wrote in .net aswell, and since you do not have to register .net components you can run them in a shared environment.

If you try to send a simple email from ASP on a shared environment you may have a hard time. In ASP.NET you have built in classes (components) for sending emails, no need to see what (if any) email components your host supports.

Back to Top
 Post Reply Post Reply Page  <12

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.