identifiy lanaguage from ASP file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <% account ="001" password ="xxx" Set httpReq = Server.CreateObject(""MSXML2.XMLHTTP) httpReq.Open httpReq.Send If Error <>"" Then ... Else Dim Address ... End IF %> |
这是什么语言?它来自HTTP Web服务器上的ASP文件。HTML页面正在使用XML HTTP Post向它发送数据,其中我需要它提供的服务
从ASP上的维基百科页面:
Programmers write most ASP pages using VBScript, but any other Active Scripting engine can be selected instead with the
@Language directive or thesyntax.
因为在任何