Get_Domain.asp
Upload User: jisenq
Upload Date: 2014-06-29
Package Size: 7216k
Code Size: 0k
Category:

ADO-ODBC

Development Platform:

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. %>