You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app.config.asp 1.6KB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
1234567891011121314151617181920212223242526272829
  1. <%
  2. dim appCss, appJs, appBootStrapJs, jqueryJs, siteTitle, iconsCss, tabulatorCss, dev
  3. Routes.Initialize "/App/"
  4. siteTitle = "Mail Tracking Kits"
  5. iconsCss = "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
  6. appCss = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
  7. tabulatorCss = "/dist/css/tabulator_bootstrap5.css"
  8. appBootStrapJs = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js' integrity='sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM' crossorigin='anonymous"
  9. jqueryJs = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js' integrity='sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==' crossorigin='anonymous' referrerpolicy='no-referrer"
  10. dev = true
  11. dim ExportDirectory
  12. select case dev
  13. case "local"
  14. ExportDirectory = "F:\Development\Tracking_Kits\uploads\"
  15. case true
  16. ExportDirectory = "C:\Share\TrackingDataExport\"
  17. case else
  18. ExportDirectory ="\\kci-syn-cl01\PC Transfer\TrackingDataExport\"
  19. end select
  20. '=======================================================================================================================
  21. ' Set Global Variables Here
  22. '=======================================================================================================================
  23. dim glob:set glob = Server.CreateObject("Chilkat_9_5_0.Global")
  24. dim success:success = glob.UnlockBundle("KENTCM.CB1022025_RGzBPM5J655e")
  25. If (success <> 1) Then
  26. put(glob.LastErrorText)
  27. End If
  28. %>

Powered by TurnKey Linux.