Roman
Roman

Reputation: 775

Which programming language has extension .do

Just wondering which programming languages is used on the web pages with the extension ".do"

Upvotes: 71

Views: 93776

Answers (4)

Merlyn Morgan-Graham
Merlyn Morgan-Graham

Reputation: 59131

According to FileInfo, the file extension is for Java Servlets.

Upvotes: 76

Usman
Usman

Reputation: 81

.do extension is used to build a J2EE enterprise application using Struts and dao factory method that is latest technology framework to build EE applications. It is much faster and efficient than JSP and JSF.

Upvotes: 8

In silico
In silico

Reputation: 52179

Strictly speaking, you can't tell for sure just by looking at the extension. I can configure a web server to interpret *.do URLs as referring to PHP files or even executables and run it accordingly. In fact, *.do URLs may not even refer to files at all! It really does depend on how the server is configured.

Upvotes: 39

Femi
Femi

Reputation: 64700

That is typically not so much a programming language feature but a framework feature: apps developed with Apache Struts (see http://struts.apache.org/) typically use that extension.

Upvotes: 26

Related Questions