0
<%

account = "001"
password = "xxx"

Set httpReq = Server.CreateObject(""MSXML2.XMLHTTP)
httpReq.Open
httpReq.Send

If Error <> "" Then 
 ...
Else 
Dim Address
...
End IF

%>

What Language is this? it is from an ASP file on a HTTP webserver.
A html page is using Xml Http Post to send data across to it, of which I require the service it provides

Simon.
  • 1,886
  • 5
  • 29
  • 62

1 Answers1

0

From the Wikipedia page on ASP:

Programmers write most ASP pages using VBScript, but any other Active Scripting engine can be selected instead with the @Language directive or the <script language="manu" runat="server"> syntax.

Since there doesn't seem to any @Language directive, and since the code contains the Dim keyword, which indicates it is some Basic dialect, this indeed looks like it's VBScript.

Community
  • 1
  • 1
svick
  • 236,525
  • 50
  • 385
  • 514