Guest User

Untitled

a guest
May 27th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <%@ Language = "vbscript" CodePage = 1252 LCID = 1030 %>
  2. <% Option Explicit ' Force explicit variable declaration %>
  3. <!--#include file = "../asp/authentication.asp" -->
  4. <!--#include file = "../asp/folders.asp" -->
  5. <%
  6. Response.Clear
  7. Response.Buffer = False
  8.  
  9. 'Make sure all pages expire & require reload
  10. Response.Expires = -1
  11. Response.CacheControl = "no-cache"
  12. Response.AddHeader "Pragma", "no-cache"
  13.  
  14. Response.ContentType = "text/xml"
  15.  
  16. Dim lsRv
  17.  
  18. Dim loAuthentication
  19. Set loAuthentication = New VDWebGTAuthentication
  20.  
  21. loAuthentication.Validate()
Add Comment
Please, Sign In to add comment