mirror of https://github.com/tongzx/nt5src
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.
26 lines
785 B
26 lines
785 B
<%@ LANGUAGE="VBSCRIPT" %>
|
|
|
|
<HTML>
|
|
<HEAD>
|
|
<META NAME="GENERATOR" Content="Microsoft FrontPage 4.0">
|
|
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<TITLE>MSMQ Asp Sample Delete Queue Page - 2</TITLE>
|
|
</HEAD>
|
|
<BODY>
|
|
<H1>MSMQ Asp Sample Delete Queue Page - 2</H1>
|
|
<H2>Deleting Queue : <%= Request.QueryString ( "QueuePath" )%><br>
|
|
<% Set msmqinfo=CreateObject ( "MSMQ.MSMQQueueInfo" )
|
|
msmqinfo.PathName=Request.QueryString ( "QueuePath" )
|
|
on error resume next
|
|
msmqinfo.Delete
|
|
if err.number <> 0 then
|
|
response.write "<font color=""#FF0000"">Error</font> 0x" & Hex(Err.Number) & " - " & Err.Description & "<br><br>"
|
|
else
|
|
response.write "Queue deleted.<br><br>"
|
|
end if
|
|
Set msmqinfo=Nothing
|
|
%>
|
|
</H2>
|
|
<A HREF="Default.asp">[Home]</A>
|
|
</BODY>
|
|
</HTML>
|