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.

57 lines
3.1 KiB

  1. <%@Language='JScript' CODEPAGE=1252%>
  2. <!--#INCLUDE file="include/header.asp"-->
  3. <!--#INCLUDE file="include/body.inc"-->
  4. <!--#INCLUDE file="../include/DataUtil.asp" -->
  5. <!--#INCLUDE file="usetest.asp" -->
  6. <%
  7. var GUID = new String( fnGetCookie("GUID" ) );
  8. var g_SolutionID = new String( fnGetCookie("SID" ) );
  9. var szPrivacyState = new Number( Request.QueryString("T") )
  10. var szContinueURL = ""; // clear it out
  11. var szCancelURL = "";
  12. var L_CANCEL_TEXT = "Cancel";
  13. var L_CONTINUE_TEXT = "Continue";
  14. var L_CANCELACCESSKEY_TEXT = "a";
  15. var L_CONTINUEACCESSKEY_TEXT= "c";
  16. %>
  17. <p class='clsPTitle'>Privacy information</p>
  18. <p class='clsPBody'>Before tracking your error report, review this privacy information. Error reports contain <a class='clsALinkNormal' href='ERContent.asp?T=0'>information</a> about what your operating system was doing when the Stop error occurred. This information will be analyzed to determine possible causes of the Stop error; it will not be used for any other purpose. If any customer-specific information, such as your computer's IP address, is present in the error report, it will not be used. Your error report is still anonymous at this time. </p>
  19. <%
  20. if ( !fnVerifyGUID( GUID ) || szPrivacyState==0 )
  21. {
  22. %>
  23. <p class='clsPBody'>You can automatically locate error reports on your computer by using an ActiveX<sup>&#174;</sup> control on this site. These error reports are displayed in a list, and you decide which ones to upload. Once uploaded, error reports are stored on a secure Microsoft server where only those individuals involved in Stop error analysis can gain access to them. The information is kept only as long as it is useful for research and analysis. As necessary, Microsoft shares error report analyses with qualified hardware and software partners for assistance.</p>
  24. <p class='clsPBody'>Depending on your computer settings, we might need to extract an error report, or small memory dump, from a complete memory dump. This small memory dump is saved as a 64 KB file, named mini000000-00.dmp, in a temporary folder on your computer. A copy is then transferred to us by using Secure Sockets Layer (SSL) encryption. You can delete this file from your computer at any time after submission.</p>
  25. <p class='clsPBody'>Once uploaded, error reports are stored on a secure Microsoft server where only those individuals involved in Stop error analysis can gain access to them. The information is kept only as long as it is useful in researching and analyzing Stop errors. As necessary, Microsoft shares error report analyses with qualified hardware and software partners for assistance.</p>
  26. <% }
  27. if ( fnVerifyNumber( szPrivacyState, 0, 1 ) )
  28. {
  29. if ( szPrivacyState == 1 )
  30. fnPrintLinks( "Welcome.asp", "https://" + g_ThisServer + "/Secure/Locate.asp" );
  31. }
  32. else
  33. {
  34. if ( fnVerifyGUID( GUID ) )
  35. {
  36. fnPrintLinks ( "Response.asp?SID=" + g_SolutionID , "https://" + g_ThisServer + "/secure/track.asp" );
  37. }
  38. }
  39. %>
  40. <script type='text/javascript' language='javascript' src='include/clientutil.js'></script>
  41. <!--#include file="include/foot.asp"-->