home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 November / Chip_2002-11_cd1.bin / zkuste / vbasic / Data / Utils / WME71SDK.exe / RCDATA / CABINET / destroyencoder.asp < prev    next >
Text File  |  2001-03-15  |  711b  |  28 lines

  1. <%@ Language=VBScript CODEPAGE=65001 %>
  2. <HTML>
  3. <HEAD>
  4. <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  5. <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. </HEAD>
  7. <BODY>
  8. <%
  9.  
  10. dim SlctEncName
  11. on Error Resume Next
  12. SlctEncName=Request.QueryString("SlctEnc")
  13. set EncApp=Session(SlctEncName)
  14. if     Err.number<>0 then 
  15.     Response.Write("Encoder   " & SlctEncName & "  was not created using RemoteAdmin so cannot be destroyed")
  16. else
  17.     set EncApp=nothing
  18.     set Session(SlctEncName)=nothing
  19.     Response.Write("Encoder  " & SlctEncName & "   Was  Destroyed Successfully")
  20. end if%>
  21. <BR>
  22. <BR>
  23. <A href=RemoteControl.htm>Return To The  Statistics Page</A>        
  24.  
  25.  
  26. </BODY>
  27. </HTML>
  28.