asp.net versus asp for ecommerce sites

  • Thread starter Thread starter Rasta
  • Start date Start date
R

Rasta

Hi,

Can someone tell me the advantage of using asp.net over asp for development
of ecommerce sites?

Thanks
 
ASP uses interpreted languages, instead of compiled languages and,
therefore, is a lot less efficient than ASP.NET.

Also, compiled assemblies when run under ASP need to be registered
with regsvr32 and, when updated, require stopping the IIS server
before they can be updated.

More throughput and less difficulty when updating assemblies
are clear advantages which ASP.NET has over ASP.




Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 
There are times when the version of a product is so radical, it takes on a
new name.

When processors went from the 286 to the 386 to the 486....then ..... The
Pentium, it was partially because of the large jump.
Aka, it was not called the 586.

When VB6 was moving to VB7, it was so radical, because of the inclusion of
OO, it got called VB.Net.



Asp is an outdated, "tack on" product.
Asp can be standalone ... or use COM objects.
To get Asp pages to talk to a real business object, (and return anything),
everything had to be a byref variant datatype.
variant datatype was the "cure all" datatype....a royal pain in the butt.
That's one thing about asp that stunk. After you've used asp.net for a
while, everything is easier.

Need a Calendar? Buy or rollout you own code to write html...to create
tables/rows/cells to show dates.
With asp.net, you drag a control on a form, set 2 or 3 properties, and
you're done.

Take that example and multply it by 1000, then another 1000. Thats the
"Grief" factor of how bad asp is compared to asp.net.


There is no way in a million years... I'd start a new project with ASP.
Yeah, once in a while I gotta maintain an asp site.
But going back to ASP is like going from my P4 computer, back to a 486. Its
that different.
I'd find another job before my boss would say "Lets do this new project in
asp". "Uh yeah, right...see ya!".
I wouldn't quit, but I'd be out the door as soon as another job came along.


Do yourself a favor, and just get rid of the notion of new development with
asp. Its in my top 10 list of "Worst Ideas Ever".

...
 
Thanks! That was really helpful. I will definitely go with .net from here on
out on new projects.

-R
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top