%@Language=Javascript%>
Solution Request Queue Information |
||
<%
//Response.Write("Qy: " + Request.QueryString() + " " ) var g_DBConn //db Connection object var iBucket = Request.QueryString("iBucket") var NumBugs = 0 var BugList = new String() var Mode = new String( Request.QueryString( "Mode" ) ) var RejectID = String( Request.QueryString("RejectID") ) var SolutionType = new String( Request.QueryString( "SolutionType" ) ) //Response.Write("RejectID: " + RejectID + " " ) if( Mode.toString() == "user" ) { //Try to get a list of bug numbers associated with this request. try { g_DBConn = GetDBConnection ( Application("CRASHDB3") ) var rsBugs = g_DBConn.Execute( "DBGPortal_GetBugIDSFromIBucket " + iBucket ) while( !rsBugs.eof ) { BugList += rsBugs("BugID") + "," NumBugs++ rsBugs.MoveNext } if( NumBugs == 0 ) { Response.Write( " ERROR: Could not find any Raid Bugs associated with iBucket=" + iBucket + " ATTENTION: This bucket is associated with more than one Raid Bug. It is strongly recommended that you create a solution for this bucket that addresses each of its associated bugs. The bugs are listed in the Create Solution interface. " ) } } } catch( err ) { Response.Write("Could not get a list of bugs that are associated with this iBucket. |
||
Reason for rejecting this request: |
<%
} else {
%>
Bucket String: |
<%=BucketID%> |
Bugs assigned to this iBucket: |
<%=BugList%> |
|