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.

123 lines
3.3 KiB

  1. <%@LANGUAGE=JScript CODEPAGE=1252 %>
  2. <%
  3. var SolutionID = Request.QueryString( "SolutionID" )
  4. var TemplateID = Request.QueryString( "TemplateID" )
  5. var ContactID = Request.QueryString( "ContactID" )
  6. var ProductID = Request.QueryString( "ProductID" )
  7. var ModuleID = Request.QueryString( "ModuleID" )
  8. var Language = Request.QueryString( "Language" )
  9. var KBArticles = Request.QueryString("KBArticles")
  10. var SolutionType = Request.QueryString("SolutionType")
  11. var DeliveryType = Request.QueryString("DeliveryType")
  12. var Mode = Request.QueryString("Mode")
  13. %>
  14. <html>
  15. <head>
  16. <TITLE>Create Solution Verification</TITLE>
  17. <!-- #INCLUDE FILE='Global_ServerUtils.asp' -->
  18. <!-- #INCLUDE FILE='Global_DBUtils.asp' -->
  19. <link rel="stylesheet" TYPE="text/css" HREF="/main.css">
  20. <link rel="stylesheet" TYPE="text/css" HREF="/CustomStyles.css">
  21. <meta http-equiv="Content-Type" CONTENT="text/html; charset=iso-8859-1" />
  22. </head>
  23. <body bgcolor='#ffffff' topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' tabindex=0>
  24. <form method="post" action="SEP_GoCreateSolution.asp?<%=Request.QueryString()%>">
  25. <table width='50%'>
  26. <tr>
  27. <td>
  28. <p class='clsPTitle'>Create Solution/Response Verification</p>
  29. </td>
  30. </tr>
  31. <tr>
  32. <td>
  33. <table class="clsTableInfo" border="0" cellpadding="2" cellspacing="0" style='border:1px solid #6681d9;'>
  34. <tr>
  35. <td align="left" nowrap class="clsTDInfo">
  36. Solution Settings
  37. </td>
  38. </tr>
  39. <tr>
  40. <td class='sys-table-cell-bgcolor1'>Mode</td>
  41. <td class='sys-table-cell-bgcolor1'><%=Mode%>
  42. </td>
  43. </tr>
  44. <tr>
  45. <td class='sys-table-cell-bgcolor1'>Solution ID</td>
  46. <td class='sys-table-cell-bgcolor1'><%=SolutionID%>
  47. </td>
  48. </tr>
  49. <tr>
  50. <td class='sys-table-cell-bgcolor1'>Template ID</td>
  51. <td class='sys-table-cell-bgcolor1'><%=TemplateID%>
  52. </td>
  53. </tr>
  54. <tr>
  55. <td class='sys-table-cell-bgcolor1'>Contact ID</td>
  56. <td class='sys-table-cell-bgcolor1'><%=ContactID%>
  57. </td>
  58. </tr>
  59. <tr>
  60. <td class='sys-table-cell-bgcolor1'>Product ID</td>
  61. <td class='sys-table-cell-bgcolor1'><%=ProductID %>
  62. </td>
  63. </tr>
  64. <tr>
  65. <td class='sys-table-cell-bgcolor1'>Module ID</td>
  66. <td class='sys-table-cell-bgcolor1'><%=ModuleID%>
  67. </td>
  68. </tr>
  69. <tr>
  70. <td class='sys-table-cell-bgcolor1'>Solution Type</td>
  71. <td class='sys-table-cell-bgcolor1'><%=SolutionType%>
  72. </td>
  73. </tr>
  74. <tr>
  75. <td class='sys-table-cell-bgcolor1'>Delivery Type</td>
  76. <td class='sys-table-cell-bgcolor1'><%=DeliveryType%>
  77. </td>
  78. </tr>
  79. <tr>
  80. <td class='sys-table-cell-bgcolor1'>KB Article String</td>
  81. <td class='sys-table-cell-bgcolor1'><%=KBArticles%>
  82. </td>
  83. </tr>
  84. <tr>
  85. <td style='padding-left:16px'>
  86. <INPUT class='clsButton' TYPE="SUBMIT" VALUE="Create Solution">
  87. </td>
  88. </tr>
  89. </table>
  90. </td>
  91. </tr>
  92. </table>
  93. </form>
  94. <script language="javascript">
  95. //this function is only here in case we need to do any validation on the data
  96. //right now, the values on this form are pretty useless . . .
  97. function fnCreateSolution()
  98. {
  99. frmCreateSolution.submit()
  100. }
  101. </script>
  102. </body>