是否可以在.asp文件的VBScript块中运行一些php代码?
类似的东西:
<%@ LANGUAGE="VBSCRIPT" %>
<%
Set str = <?php $s = "hello world"; echo $s; ?>
%>
谢谢
答案 0 :(得分:0)
那行不通。
但是经典的ASP和VBScript是类似于PHP的组合。
参见classic ASP reference。
您问题中的代码如下
<%@ LANGUAGE="VBSCRIPT" %>
<%
s = "hello world"
Response.Write(s)
%>