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.

74 lines
1.5 KiB

  1. <%@Language='JScript' CODEPAGE=1252%>
  2. <!--#INCLUDE FILE='Global_DBUtils.asp' -->
  3. <!--#include file='global_serverutils.asp'-->
  4. <%
  5. Response.Buffer=false
  6. Response.CharSet="iso-8859-1"
  7. Response.CacheControl="no-cache"
  8. Response.addHeader( "Pragma", "no-cache" )
  9. Response.Expires=-1
  10. var ModeString = Request.QueryString("mode")
  11. var UserMode = 0
  12. if ( Request.QueryString("mode") == "user" )
  13. {
  14. UserMode = 1
  15. }
  16. %>
  17. <head>
  18. <link rel="stylesheet" TYPE="text/css" HREF="/main.css">
  19. <link rel="stylesheet" TYPE="text/css" HREF="/CustomStyles.css">
  20. </head>
  21. <body bgcolor='#ffffff' topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' tabindex='0'>
  22. <table name='loadingData' id='loadingData' >
  23. <tr>
  24. <td>
  25. <p class='clsPTitle'>Loading <%=ModeString%> mode response requests</p>
  26. <p>Please wait . . . . </p>
  27. </td>
  28. </tr>
  29. </table>
  30. <TABLE CLASS=ContentArea>
  31. <tr>
  32. <td>
  33. <p class='clsPTitle'><%=ModeString%> Response Requests</p>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td>
  38. <DIV NAME=divQueue ID=divQueue>
  39. <table id="tblUserBuckets" class="clsTableInfo" border="0" cellpadding="2" cellspacing="1">
  40. <%
  41. var g_DBConn = GetDBConnection( Application("CRASHDB3") )
  42. var rsResults = g_DBConn.Execute( "DBGPortal_GetResponseRequests " + UserMode )
  43. fnBuildRSResults( rsResults, UserMode )
  44. %>
  45. </div>
  46. </table>
  47. </td>
  48. </tr>
  49. </table>
  50. <script language='javascript'>
  51. document.all.loadingData.style.display='none'
  52. </script>
  53. </body>