Leaked source code of windows server 2003
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.

39 lines
1.1 KiB

  1. <%@LANGUAGE = Javascript%>
  2. <!--#INCLUDE FILE='Global_DBUtils.asp' -->
  3. <!--#include file='global_serverutils.asp'-->
  4. <head>
  5. <link rel="stylesheet" TYPE="text/css" HREF="/main.css">
  6. <link rel="stylesheet" TYPE="text/css" HREF="/CustomStyles.css">
  7. </head>
  8. <body bgcolor='#ffffff' topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' tabindex='0' >
  9. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  10. <tr>
  11. <td>
  12. <p class='clsPTitle'>Debug Portal - Kernel Mode Data</p>
  13. </td>
  14. </tr>
  15. </table>
  16. <table id="tblUserBuckets" width="100%" class="clsTableInfo" border="0" cellpadding="2" cellspacing="1">
  17. <%
  18. var altColor = "sys-table-cell-bgcolor2"
  19. var g_DBConn = GetDBConnection ( Application("CRASHDB3") )
  20. var Query = "Select Status, ResponseType, DateRequested, RequestedBy, BucketID, Description from dbgportal_ResponseQueue where Status=0 order by status asc"
  21. //Response.Write("Query: " + Query )
  22. var rsBuckets = g_DBConn.Execute( Query )
  23. fnBuildRSResults( rsBuckets )
  24. %>
  25. </table>
  26. </body>