利用 Server.Execute 实现ASP动态包含文件
<%
If blnFlag =True Then
Server.Execute "file1.asp"
Else
Server.Execute "file2.asp"
End If
%>
ASP利用Server.Execute动态包含文件
博客介绍了利用Server.Execute实现ASP动态包含文件的方法,通过判断blnFlag的值,若为True则包含file1.asp,否则包含file2.asp。
利用 Server.Execute 实现ASP动态包含文件
<%
If blnFlag =True Then
Server.Execute "file1.asp"
Else
Server.Execute "file2.asp"
End If
%>

被折叠的 条评论
为什么被折叠?