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 >
Wrap
Text File
|
2001-03-15
|
711b
|
28 lines
<%@ Language=VBScript CODEPAGE=65001 %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
</HEAD>
<BODY>
<%
dim SlctEncName
on Error Resume Next
SlctEncName=Request.QueryString("SlctEnc")
set EncApp=Session(SlctEncName)
if Err.number<>0 then
Response.Write("Encoder " & SlctEncName & " was not created using RemoteAdmin so cannot be destroyed")
else
set EncApp=nothing
set Session(SlctEncName)=nothing
Response.Write("Encoder " & SlctEncName & " Was Destroyed Successfully")
end if%>
<BR>
<BR>
<A href=RemoteControl.htm>Return To The Statistics Page</A>
</BODY>
</HTML>