Get_Domain.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:0k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="Const.asp" -->
  3. <!--#include file="../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="Function.asp" -->
  5. <%
  6. Dim Conn,Str_MF_Domain
  7. MF_Default_Conn
  8. Str_MF_Domain = GET_MF_Domain()
  9. If Str_MF_Domain="" then
  10. Response.write "FSDomain="""";"
  11. Else
  12. Response.write "FSDomain=""http://"&GET_MF_Domain()&""";"
  13. End If
  14. If G_VIRTUAL_ROOT_DIR="" Then
  15. Response.write "VirtualDir="""";"
  16. Else
  17. Response.write "VirtualDir=""/"&G_VIRTUAL_ROOT_DIR&""";"
  18. End if
  19. %>