Dev Shed Lounge
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOtherDev Shed Lounge

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now!
  #1  
Old April 26th, 2002, 04:59 PM
LiquidKernel LiquidKernel is offline
$user->language("PHP");
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2002
Posts: 25 LiquidKernel User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 16 m 58 sec
Reputation Power: 0
Send a message via ICQ to LiquidKernel Send a message via AIM to LiquidKernel Send a message via Yahoo to LiquidKernel
ASP.NET Hype

I'm wondering if this whole .NET hype is actually good, or just a buzz word.

People say that ASP.NET is compiled instead of run-time, and that already puts it ahead of PHP.

My question, is it worth checking out for a *nix and PHP programmer? or stay with what I have going and let the MS people use whatever they want?

Regards.
LK

Reply With Quote
  #2  
Old April 27th, 2002, 05:32 AM
M.Hirsch M.Hirsch is offline
Contributing User
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Oct 2000
Location: Back in the real world.
Posts: 5,969 M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 1 Month 1 Day 22 h 39 m 55 sec
Reputation Power: 184
i canīt answer your question, but i need to correct you. actually there is a php compiler already for a long time. so why is asp ahead on this?
__________________
--
Manuel Hirsch - Linux, FreeBSD, programming, administration articles, tutorials and more.

Reply With Quote
  #3  
Old April 27th, 2002, 11:47 AM
Groucho Groucho is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2001
Location: Croatia
Posts: 3 Groucho User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I know you'll hate me for what I'm about to say , but PHP (at this point) can't compete with .NET. In fact PHP and .NET can't even be compared.

The .NET framework is an environment for building, deploying, and running Web Services and Web Applications. Microsoft developed it as a framework for universal services and it's generally based on the new Internet standards such as XML, SOAP, UDDI, etc. The .NET Framework has thousands of classes divided into common class libraries similar to JavaSDK. ASP.NET is just one part of the .NET framework just like JSP is one part of the J2EE framework. It's still language neutral, but now supports some hardcore languages like C++, C#, etc. Last but not least Microsoft offers a powerfull set of tools for the .NET enviroment called Visual Studio.NET.

.NET is definitely not just a buzz word, but I doubt it can outrun a monster like J2EE. Microsoft is the most responsible for this ".NET hype". Quote from the asp.net website: ".NET significantly outperformed J2EE...blah blah... .NET was 28x faster (that's 2700%)...blah blah..." Yeah, right. Lmao

PHP is my langague of choice for web programming in general, but when it comes to developing secure, platform independent, commercial (particularly B2B) web applications I think the choice is obvious - Java (unless you're a Microsoft.NET fan).

Cheers.

Reply With Quote
  #4  
Old April 27th, 2002, 12:02 PM
LiquidKernel LiquidKernel is offline
$user->language("PHP");
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2002
Posts: 25 LiquidKernel User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 16 m 58 sec
Reputation Power: 0
Send a message via ICQ to LiquidKernel Send a message via AIM to LiquidKernel Send a message via Yahoo to LiquidKernel
Quote:
Originally posted by M.Hirsch
i canīt answer your question, but i need to correct you. actually there is a php compiler already for a long time. so why is asp ahead on this?


I only said that because ASP.NET can be compiled without anything else (besides the software you have to buy), and yes, I know you can compile PHP with Zend Encoder.

Reply With Quote
  #5  
Old April 29th, 2002, 02:08 PM
jkrew_devshed jkrew_devshed is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2001
Posts: 105 jkrew_devshed User rank is Sergeant (500 - 2000 Reputation Level)jkrew_devshed User rank is Sergeant (500 - 2000 Reputation Level)jkrew_devshed User rank is Sergeant (500 - 2000 Reputation Level)jkrew_devshed User rank is Sergeant (500 - 2000 Reputation Level)jkrew_devshed User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 13 h 14 m 42 sec
Reputation Power: 22
Call and response apps

Regarding your question, one thing I have pointed out over and over at my work is that many of our applications are call and response applications - perfect for the web, and perfect for PHP. They are trying to get us on the .NET bandwagon, and I always ask two big questions:

1) How does it make our job easier?
2) Do you even know what XML is when you talk about XML support? (that is what I like to call a reality check question)

For a true, independent application, I can see using other tools such as Java or C# on the .Net platform (that's another thing: .Net is made up of many parts. A good explanation and the open-source alternative can be found at http://www.go-mono.com/faq.html), but if your applications are just fine working over httpd, then I vote PHP is awesome.

Another aspect of PHP is how server-side system scripts can be written in the language as well, so one can easily build web pages, then write a little script run by a cron job to do cleanup or what have you, in the same language.
__________________
"I'm between quotes right now"

Reply With Quote
  #6  
Old April 29th, 2002, 02:17 PM
LiquidKernel LiquidKernel is offline
$user->language("PHP");
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2002
Posts: 25 LiquidKernel User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 16 m 58 sec
Reputation Power: 0
Send a message via ICQ to LiquidKernel Send a message via AIM to LiquidKernel Send a message via Yahoo to LiquidKernel
Re: Call and response apps

I spoke to a unbiased ASP.NET user, and we had a good discussion about it and PHP. He brought up points that ASP.NET allows you to do a 3-tier application architecture, and that lots of things are already done for you. So I showed him my e-commerce application written in PHP using my own architecture. We both agreed that my PHP application was up-to-par with the functionality of ASP.NET. So the only real difference between the two languages, in my opinion, is the fact that one is compiled out-of-the-box, and the other isn't (not yet, anyway). To me it really boils down to how much of the language you can use, so it's a matter of preference.

I gave ASP.NET a try on my XP box, and it seems to be ok. When you first open the page, it'll take a few seconds grinding away at the source making it into a binary (just like JSP apps), and after it's a binary, the page is lightning fast. But I predict the same results can be achived with Zend Accelerator (heafty price tag though).

Reply With Quote
  #7  
Old May 9th, 2002, 10:20 PM
deepspring's Avatar
deepspring deepspring is offline
Is a Psycho
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2000
Location: In your computer
Posts: 231 deepspring User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via AIM to deepspring Send a message via Yahoo to deepspring
I guess I will have to go with the "skills most wanted" that I see advertised on Australian job sites such as http://www.seek.com.au/ , http://www.mycareer.com.au/ and http://www.monster.com.au/ ...

ASP
ASP.NET
.NET (in general)
SQL Server
Oracle
MS Access
JSP / J2EE / Servlets / Other Java
C#
VB
PowerBuilder
XML / XSL / some other XML variant

Even though I think that most of what MS has to offer is utter BS and prefer to use the cheaper, often more reliable OpenSource technologies. I can't argue with the evidence shown in Job Adverts, ".NET" has become more than a buzz word or hype in Australia.

(Yes, I know that there are OpenSource jobs advertised also on the above mentioned sites, but you can't look far with out them wanting some obscure technology (priced beyond the reach of most common unemployed mortal men/women who want to try and learn it) or one / more of the above technologies as well).
__________________
deepspring

- "Netscape 4 users are like lemmings... You can't help but laugh when one falls off a cliff"

Last edited by deepspring : May 9th, 2002 at 10:25 PM.

Reply With Quote
Reply

Viewing: Dev Shed ForumsOtherDev Shed Lounge > ASP.NET Hype


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 4 hosted by Hostway