vote up 1 vote down star

I am resonably experienced with asp.net and would like to learn a new language with a focus on web development.

Licensing and hosting costs are why I would like to use something not reliant on microsoft so something based on open source technologies is a plus. I have had a tiny bit of experience with php and did not like it but I guess I could be convinced otherwise.

Basically I'd like to know peoples opinion on the the best language for future web development with regards to longivity, resources, frameworks, hosting etc.

flag
The way it stands, this question will only result in opinions -if you'd be so kind to ask a specific question, that would result in better answers – Silver Dragon Jul 1 at 0:59
1  
ASP.NET web hosting is comparable in price to Linux-based hosting and you can develop Microsoft solutions using free tools from Microsoft. The only reasonable complaint is not be reliant on Microsoft. However the ASP.NET MVC framework is open source. Having used Java, PHP, C (CGI), and Ruby I am quite happy with ASP.NET MVC. – Talljoe Jul 1 at 1:05
I do intend on using asp.net mvc in the future but would still like some experience with something out side of the microsoft domain. – lobsterino Jul 1 at 1:11
That also is a fair reason. I would say look at Ruby On Rails. It, arguably, isn't as performant as other languages, but it has its head on straight with regards to web architecture, design, and developmet style plus it'll introduce you to a more functional-style of programming which is invaluable. There's a large community with screencasts and tutorials. – Talljoe Jul 1 at 3:54

6 Answers

vote up 3 vote down check

Just like the rest of the industry, no "best" option is available -all frameworks has its own share of strength, and weakness. Basically, when it comes to web development, there are 4 stable technology stacks:

  • ASP.NET -you already know it
  • PHP: strength: web development standard, and scaling it to very high levels is not only possible, but rather easy. Well documented, and a large array of libraries are already available. Weakness: due to ease of getting the basics, the surrounding community is rather noobish, which resulted in several khm less, than optimal khm code-bases. This can, however, be improved.
  • Java/J2EE: strength: stable scalability, a very large, and diverse set of tools already available. weakness: choosing the most optimal stack for your situation can be hard; hosting costs might be higher, than PHP
  • Python, along with Django
  • And the +1 is Ruby; the jury is still out with this one.

With all web developments, the question boils down to what you want to achieve, and what experience you / your team has. Statistically, PHP tends to be most popular choice, due to the fact, that any random developer can pick it up rather easily (compared to the other options), dive into the codebase, and fix / hack things right away. Again, YMMV, do the research, instead of asking for opinions.

link|flag
+1 for PHP. It's not as horrible a language as people make it out to be. It is pretty easy to shoot yourself in the foot if you're so inclined, but good PHP code is as good as any other language. The benefits (ubiquitous, cheap, great docs) often outweigh the downsides. – deceze Jul 1 at 2:02
Also +1 for Ruby, just because it brings some fresh perspectives with it. – deceze Jul 1 at 2:03
As someone who programs all day in PHP, I have to disagree with the recommendation. While PHP is indeed a great choice for newbies who just want to copy/paste together something simple, but when you're talking about serious applications, there are other languages with better syntax, frameworks and tool chains. I would suggest java or ASP.NET, possibly python. – Joeri Sebrechts Jul 1 at 12:21
vote up 1 vote down

Ruby on Rails will probably be the most eye-opening experience. It's a lot of fun. The only downside is that you may not "get it" (especially the "why is x done this way") without at least buying the Pragmatic Programmers book Agile Web Development with Rails.

link|flag
vote up 0 vote down

JavaScript can be a good backbone if well implemented.

Perl can provide advanced features not incorporated in other languages.

Java is good but it's slow sometimes, be cerfull if you decide to write most of the code in it.

link|flag
vote up 0 vote down

if you want to go free go for Java/J2EE. however it's not worth the bother. it's easier to shell out the money. i use aspspider to testing before hosting.

link|flag
vote up 3 vote down

Python, with a framework like Django, is an increasingly popular solution for web development. It's also compatible with Google App Engine which makes deployment simpler than running your own hardware.

link|flag
vote up 5 vote down

In my opinion (and this is opinion), nothing beats Java/J2EE for corporate web development.

The tools are very good (Eclipse and its ilk are open source) and the architecture is very well understood.

Despite the Oracle purchase of Sun, Java won't be disappearing any time soon so that covers longevity. Resources and frameworks, you just have to Google to see how much is actually around for J2EE - it's an impressive amount (so there's bound to be some nuggets amongst all the dross). As to hosting, you have a wide range of web/application servers to choose from.

As an aside, we use Eclipse to make our J2EE applications with jQuery pumped out on the client side for UI pizazz.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.