vote up 1 vote down star

Is there a programming language suitable for building web applications, that is compiled, strongly-typed, and isn't ASP.NET?

I thought of using Mono (http://www.mono-project.com/), but I wonder if there are any other alternatives.

(If the language and framework are open-source, that's a big plus!)

flag

Maybe www.mono-project.com ? – Darksider Oct 2 '08 at 7:54

7 Answers

vote up 6 vote down check

Not sure what do you mean by saying "compiled". What about Java ?

Java has a lot of frameworks for web development. For example Tapestry:

Tapestry is an open-source framework for creating dynamic, robust, highly scalable web applications in Java.

link|flag
vote up 3 vote down

Java meets all the criteria

link|flag
vote up 3 vote down

If you mean compiled to win32 code, and not to an intermediate language, try Delphi.

link|flag
vote up 2 vote down

What exactly are you asking for?

Are you asking for something compiled, or something performant?
Are you asking for something strongly typed, or are you asking for something that will easily help you debug errors? (unit testing is sometimes a better subtitute for compilers)
Is there a requirement from your customer that it's not written in ASP.Net?
Is there a technical requirement that .Net code cannot be run?

You are asking for a technology to solve problems you haven't properly defined.

link|flag
vote up 1 vote down

The spring framework and the java language.

http://www.springframework.org/ opensource and extensively used in the industry.

In particular checkout spring-mvc and spring web-flow modules which make creating web projects a lot simpler.

link|flag
vote up 0 vote down

Maybe you should meant "compiled to machine code"?

C# and Java are compiled to an intermediate language which is then interpreted at run time.

Most decent interpreters compile this to actual machine code at runtime to speed up (Just In Time compiling).

Of course it is not as efficient, but many language features would be extremely hard to implement otherwise (for example Garbage Collection).

Also having an intermediate language allows your compiled code to run on different platforms.

link|flag
the JIT/VM system is for the convenience of the runtime and compiler writers. You can implement GC (for example) in native code quite well - look at the boehm GC for example. – gbjbaanb Jan 10 at 0:44
vote up 0 vote down

Mono is not a different programming language, it's just an open source implementation of the .NET framework for Unix systems (and Macs too). It aims to be totally compatible with .NET, so you'd end up using C# and ASP.NET just the same.

link|flag

Your Answer

Get an OpenID
or

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