Source code of Windows XP (NT5)
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.
|
|
<%@ 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 Page</TITLE> </HEAD> <BODY>
<H1>MSMQ ASP Sample Create Queue Page</H1> <H2>Creating Queue : <%= Request.QueryString ( "MachName" ) & "\" & Request.QueryString ( "QName" ) %><br> <% Set msmqinfo=CreateObject ( "MSMQ.MSMQQueueInfo" ) msmqinfo.PathName=Request.QueryString ( "MachName" ) & "\" & Request.QueryString ( "QName" ) on error resume next msmqinfo.Create if err.number <> 0 then response.write "<font color=""#FF0000"">Error</font> 0x" & Hex(Err.Number) & " - " & Err.Description & "<br><br>" else response.write "Queue created.<br><br>" end if Set msmqinfo=Nothing %> </H2> <A HREF="Default.asp">[Home]</A> </BODY> </HTML>
|