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.

565 lines
19 KiB

  1. <!--#INCLUDE file="include\asp\top.asp"-->
  2. <!--#INCLUDE file="include\inc\browserTest.inc"-->
  3. <!--#include file="include\asp\head.asp"-->
  4. <!--#INCLUDE file="include\inc\statestrings.inc"-->
  5. <%
  6. Dim SolIDk
  7. Function gurd(What)
  8. Dim a
  9. Dim b
  10. Dim c
  11. Dim d
  12. Dim k
  13. Dim chk
  14. Dim Opp
  15. Dim Pivot
  16. Dim p1
  17. Dim p2
  18. Dim Limit
  19. Dim Pos
  20. Dim Temp
  21. a = Mid(What,1,1)
  22. Opp = Mid(What,2,1)
  23. Pivot = InStr(What,"Z")
  24. p1 = CLng("&h" & Mid(What,3,Pivot-3))
  25. Limit = InStr(What,"X")
  26. p2 = CLng("&h" & Mid(What,Pivot+1,Limit-Pivot-4))
  27. Pos = Mid(What,Limit-3,1)
  28. b = Mid(What,Limit-2,1)
  29. c = Mid(What,Limit-1,1)
  30. d = CLng("&h" & Mid(What,Limit+1,Len(What)-Limit))
  31. p1 = 16777216 - p1
  32. p2 = 16777216 - p2
  33. If (Pos Mod 2 <> 0) Then
  34. Temp = p1
  35. p1 = p2
  36. p2 = Temp
  37. End If
  38. If (Opp Mod 2 = 0) Then
  39. p1 = p1 - p2
  40. Else
  41. p1 = p1 + p2
  42. End If
  43. chk = 0
  44. For k = 1 to Len(p1)
  45. chk = chk + CInt(Mid(p1,k,1))
  46. Next
  47. For k = 1 to Len(p2)
  48. chk = chk + CInt(Mid(p2,k,1))
  49. Next
  50. If (chk = d) Then
  51. gurd = p1
  52. Else
  53. gurd = -1
  54. End If
  55. End Function
  56. If (Request.QueryString("id") <> "") Then
  57. SolIDk = gurd(Request.QueryString("id"))
  58. Else
  59. SolIDk = -1
  60. End If
  61. If (SolIDk <> -1 ) Then
  62. %>
  63. <%
  64. dim cnState
  65. dim rsState
  66. dim rsMoreInfo
  67. dim rsDescription
  68. Dim rsContact
  69. Dim rsTemplate
  70. Dim rsModule
  71. Dim arrMoreInfo
  72. dim iIncidentID
  73. dim x
  74. dim arrCompany
  75. dim ContactID
  76. Dim strTemp 'As String
  77. Dim strMoreInfo
  78. dim sStatus
  79. dim sClass
  80. dim sEventName
  81. dim strSolution
  82. dim strCompany
  83. dim strDescription
  84. dim strMid
  85. Dim strSub 'As String
  86. Dim strFirstHalf 'As String
  87. Dim strSecondHalf 'As String
  88. Dim strLink 'As String
  89. Dim strKB 'As String
  90. Dim strKBI
  91. Dim strLinkI
  92. Dim strINTLKB
  93. Dim strINTLKBURL
  94. Dim strTemplate
  95. Dim strKBLists
  96. Dim strKBArts
  97. Dim strModule
  98. Dim strContact
  99. Dim iPos
  100. Dim intMessage
  101. Dim iLenSub 'As Integer
  102. Dim iStart 'As Integer
  103. Dim iStop 'As Integer
  104. Dim iCurrentPos 'As Integer
  105. Dim iLen 'As Integer
  106. Dim ModuleID
  107. Call CCreateObjects
  108. '****************************************Completed**********************************************************
  109. if intMessage = 2 then
  110. Call CCreateConnection
  111. set rsState = cnState.Execute("Exec GetSolution3 " & SolIDk & ", '" & strAbb & "'")
  112. '*************************************************************************************************************
  113. if rsState.State = adStateOpen then
  114. set rsState.ActiveConnection = nothing
  115. if rsState.RecordCount > 0 then
  116. strDescription = rsState("Description")
  117. ContactID = rsState("ContactID")
  118. ModuleID = rsState("ModuleID")
  119. strTemp = ""
  120. strTemp = rsState("Description")
  121. iLen = Len(strTemp)
  122. iPos = 1
  123. For x = 1 To iLen
  124. iPos = InStr(iPos, strTemp, "<KB>", vbTextCompare)
  125. If iPos = 0 Then Exit For
  126. iStart = iPos
  127. iPos = iPos + 4
  128. iPos = InStr(iPos, strTemp, "</KB>", vbTextCompare)
  129. If iPos = 0 Then Exit For
  130. iStop = iPos
  131. iStart = iStart + 4
  132. iLenSub = iStop - (iStart)
  133. 'Do something
  134. strLink = Mid(strTemp, iStart + 1, iLenSub - 1)
  135. strKB = Mid(strTemp, iStart, iLenSub)
  136. strSub = "<a class='clsALink' target='_blank' href='" & L_STATE_KNOWLEDGEBASE_LINK_TEXT & strLink & "'>" & strKB & "</a>"
  137. strKBArts = strKBArts & strSub & "<BR>"
  138. strFirstHalf = Mid(strTemp, 1, iStart - 5)
  139. if x = 1 then
  140. if Left(strFirstHalf, 4) = "<BR>" then
  141. strFirstHalf = mid(trim(strFirstHalf), 5, Len(strFirstHalf) - 4)
  142. end if
  143. end if
  144. strSecondHalf = Mid(strTemp, iStop + 5, iLen)
  145. strKBLists = strFirstHalf & "&nbsp;" & "&nbsp;" & strSecondHalf
  146. Next
  147. iLen = Len(strKBLists)
  148. iPos = 1
  149. For x = 1 To iLen
  150. iPos = InStr(iPos, strKBLists, "<INTLKB>", vbTextCompare)
  151. If iPos = 0 Then Exit For
  152. iStart = iPos + 8
  153. 'iStart = iPos
  154. iPos = InStr(iPos, strKBLists, "</INTLKB>", vbTextCompare)
  155. If iPos = 0 Then Exit For
  156. iStop = iPos
  157. iLenSub = iStop - (iStart)
  158. strKBI = Mid(strKBLists, iStart, iLenSub)
  159. strFirstHalf = Mid(strKBLists, 1, iStart - 5)
  160. if x = 1 then
  161. if Left(strFirstHalf, 12) = "<BR>" then
  162. strFirstHalf = mid(trim(strFirstHalf), 5, Len(strFirstHalf) - 12)
  163. end if
  164. end if
  165. strSecondHalf = Mid(strKBLists, iStop + 5, iLen)
  166. strKBLists = strFirstHalf & "&nbsp;" & "&nbsp;" & strSecondHalf
  167. iPos = InStr(iPos, strKBLists, "<INTLKBURL>", vbTextCompare)
  168. If iPos = 0 Then Exit For
  169. iStart = iPos
  170. iPos = iPos + 11
  171. iPos = InStr(iPos, strKBLists, "</INTLKBURL>", vbTextCompare)
  172. If iPos = 0 Then Exit For
  173. iStop = iPos
  174. iStart = iStart + 11
  175. iLenSub = iStop - (iStart)
  176. strLinkI = Mid(strKBLists, iStart, iLenSub)
  177. strSub = "<a class='clsALink' target='_blank' href='" & strLinkI & "'>" & strKBI & "</a>"
  178. strINTLKB = strINTLKB & strSub & "<BR>"
  179. strFirstHalf = Mid(strKBLists, 1, iStart - 5)
  180. if x = 1 then
  181. if Left(strFirstHalf, 12) = "<BR>" then
  182. strFirstHalf = mid(trim(strFirstHalf), 5, Len(strFirstHalf) - 12)
  183. end if
  184. end if
  185. strSecondHalf = Mid(strKBLists, iStop + 5, iLen)
  186. strKBLists = strFirstHalf & "&nbsp;" & "&nbsp;" & strSecondHalf
  187. Next
  188. end if
  189. if rsState.State = adStateOpen then
  190. if rsState.RecordCount > 0 then
  191. strDescription = rsState("Description")
  192. end if
  193. end if
  194. end if
  195. if ContactID <> "" then
  196. set rsContact = cnState.Execute("exec getcontact " & ContactID)
  197. if rsContact.State = adStateOpen then
  198. set rsContact.ActiveConnection = nothing
  199. strContact = rsContact("CompanyName")
  200. end if
  201. end if
  202. if ModuleID <> "" then
  203. set rsModule = cnState.Execute("exec GetModule " & ModuleID)
  204. if rsModule.State = adStateOpen then
  205. set rsModule.ActiveConnection = nothing
  206. strModule = rsModule("ModuleName")
  207. end if
  208. end if
  209. '**********************************Template************************************************
  210. if IsNull(rsState("TemplateID")) = false then
  211. if rsState("TemplateID") > 0 then
  212. Set rsTemplate = cnState.Execute("exec GetTemplate " & rsState("TemplateID"))
  213. if rsTemplate.State = adStateOpen then
  214. if rsTemplate.RecordCount > 0 then
  215. strTemplate = rsTemplate("Description")
  216. strTemplate = Replace(strTemplate, "<MODULE></MODULE>", strModule)
  217. strTemplate = Replace(strTemplate, "<CONTACT></CONTACT>", strContact)
  218. end if
  219. end if
  220. end if
  221. end if
  222. '******************************************************************************************
  223. if rsDescription.State = adStateOpen then rsDescription.Close
  224. if rsState.State = adStateOpen then rsState.Close
  225. if cnState.State = adStateOpen then cnState.Close
  226. '****************************************Researching More Info**********************************************************
  227. elseif intMessage = 5 then
  228. Call CCreateConnection
  229. set rsMoreInfo = cnState.Execute("Exec GetMoreInfo " & sClass & ", '" & strAbb & "'")
  230. set rsMoreInfo.ActiveConnection = nothing
  231. if rsMoreInfo.State = adStateOpen then
  232. if rsMoreInfo.RecordCount > 0 then
  233. if trim(strAbb) = "USA" then
  234. rsMoreInfo.MoveFirst
  235. do while rsMoreInfo.EOF = false
  236. strTemp = rsMoreInfo.Fields(0).Value
  237. if len(strTemp) > 0 then
  238. arrMoreInfo = split(strTemp, ";")
  239. 'strMoreInfo = ""
  240. for x=0 to ubound(arrMoreInfo)
  241. strMoreInfo = strMoreInfo & "<a class=clsALink target='_blank' href='" & L_STATE_KNOWLEDGEBASE_LINK_TEXT
  242. strMoreInfo = strMoreInfo & Mid(Trim(arrMoreInfo(x)), 2, len(arrMoreInfo(x)))
  243. strMoreInfo = strMoreInfo & "'>" & arrMoreInfo(x) & "</a><br><br>"
  244. next
  245. end if
  246. rsMoreInfo.MoveNext
  247. loop
  248. else
  249. strMoreinfo = ""
  250. do while rsMoreInfo.EOF = false
  251. strMoreInfo = strMoreInfo & "<br>" & rsMoreInfo.Fields(0).Value
  252. rsMoreInfo.MoveNext
  253. loop
  254. end if
  255. end if
  256. end if
  257. if cnState.State = adStateOpen then cnState.Close
  258. end if
  259. '_____________________________________________________________________________________________________________________
  260. 'Sub Procedures
  261. Private Sub CCreateConnection
  262. on error resume next
  263. with cnState
  264. .ConnectionString = strCustomer
  265. .CursorLocation = adUseClient
  266. .Open
  267. end with
  268. if cnState.State = adStateClosed then
  269. strTemp = "http://" & Request.ServerVariables("SERVER_NAME") & Request.ServerVariables("URL")
  270. Response.Write "<br><div class='divLoad'><p class='clsPTitle'>" & L_COMMENTS_UNABLE_TOCONNECT_ERRORMESSAGE & "</p>"
  271. Response.Write "<p class='clsPBody'>" & L_COMMENTS_CONNECTION_FAILED_TEXT & "</p></div>"
  272. Call CDestroyObjects
  273. Response.End
  274. end if
  275. End Sub
  276. Private Sub CCreateObjects
  277. on error resume next
  278. iIncidentID = Request.Cookies("txtIncidentID")
  279. sClass = Request.Cookies("Class")
  280. intMessage = Request.Cookies("txtEventName")
  281. intMessage = Cint(intMessage)
  282. intMessage = 2
  283. strAbb = "USA"
  284. sEventName = Request.Cookies("txtDescription")
  285. if sEventName = "~|~|" then sEventName = ""
  286. set rsContact = CreateObject("ADODB.Recordset")
  287. set cnState = CreateObject("ADODB.Connection")
  288. set rsState = CreateObject("ADODB.Recordset")
  289. set rsDescription = CreateObject("ADODB.Recordset")
  290. Set rsMoreInfo = CreateObject("ADODB.Recordset")
  291. Set rsTemplate = CreateObject("ADODB.Recordset")
  292. Set rsModule = CreateObject("ADODB.Recordset")
  293. strCompany = L_STATE_COMPANYLIST_FORARRAY_TEXT
  294. arrCompany = split(strCompany, ";")
  295. End Sub
  296. Private Sub CDestroyObjects
  297. on error resume next
  298. if rsContact.State = adStateOpen then rsContact.Close
  299. if rsState.State = adStateOpen then rsState.Close
  300. if rsMoreInfo.State = adStateOpen then rsMoreInfo.Close
  301. if rsTemplate.State = adStateOpen then rsTemplate.Close
  302. if rsDescription.State = adStateOpen then rsDescription.Close
  303. if rsModule.State = adStateOpen then rsModule.Close
  304. if cnState.State = adStateOpen then cnState.Close
  305. set rsContact = nothing
  306. set rsMoreInfo = nothing
  307. set rsState = nothing
  308. set rsDescription = nothing
  309. set cnState = nothing
  310. End Sub
  311. '_____________________________________________________________________________________________________________________
  312. %>
  313. <form id="frmMain" name="frmMain">
  314. <br>
  315. <div class="clsDiv">
  316. <%
  317. Response.Write "<P class='clsPTitle'>" & L_STATE_EVENT_NAME_MESSAGE & "</p>"
  318. Response.Write "<P class='clsPBody' style='word-wrap:break;word-break:break-all'>" & L_STATE_EVENTNAME_TITLE_TEXT & "&nbsp;"
  319. Response.BinaryWRite unescape(sEventName)
  320. Response.Write "</P>"
  321. Response.Write "<table border=0><thead><tr><td width=45% nowrap>"
  322. Select case intMessage
  323. case 0
  324. Response.Write "<P class='clsPSubTitle'>" & L_STATE_IN_PROGRESS_TEXT & "</P>"
  325. case 1
  326. Response.Write "<P class='clsPSubTitle'>" & L_STATE_RESEARCHING_TITLE_TEXT & "</P>"
  327. case 2
  328. Response.Write "<P class='clsPSubTitle'>" & L_STATE_ANALYSIS_COMPLETE_TEXT & "</P>"
  329. case 3
  330. Response.Write "<P class='clsPSubTitle'>" & L_STATE_CANNOT_PROCESS_TEXT & "</P>"
  331. case 4
  332. Response.Write "<P class='clsPSubTitle'>" & L_STATE_ANALYSIS_COMPLETE_TEXT & "</P>" 'L_STATE_FULLDUMP_REQUIRED_TEXT
  333. case 5
  334. Response.Write "<p class='clsPSubTitle'>" & L_STATE_RESEARCHINGMORE_INFO_TEXT & "</p>"
  335. case 5
  336. Response.Write "<P class='clsPSubTitle'>" & L_STATE_FULLDUMP_REQUIRED_TEXT & "</P>"
  337. case 16
  338. Response.Write "<P class='clsPSubTitle'>" & L_STATE_UNKNOWN_BODY_TEXT & "</P>"
  339. case else
  340. Response.Write "<P class='clsPSubTitle'>" & L_STATE_UNKNOWN_BODY_TEXT & "</P>"
  341. end select
  342. Response.Write "</td><td width=10% ></td><td width=45% nowrap>"
  343. if rsContact.State = adStateOpen then
  344. if rsContact.RecordCount > 0 then
  345. Response.Write "<P class='clsPSubTitle'>" & L_STATE_MANUFACTURERS_INFORMATION_TEXT & "</p>"
  346. end if
  347. end if
  348. if intMessage = 4 then
  349. Response.Write "</td></tr></thead><tbody><tr><td width=100% valign=top>"
  350. else
  351. Response.Write "</td></tr></thead><tbody><tr><td width=45% valign=top>"
  352. end if
  353. Select case intMessage
  354. case 0
  355. Response.Write "<p class='clsPBody'>" & L_STATE_INPROGRESS_DETAILS_TEXT & "</P>"
  356. case 1
  357. Response.Write "<p class='clsPBody'>" & L_STATE_RESEARCHING_DETAILS_TEXT & "</P>"
  358. Response.Write "<p class='clsPBody'>" & L_STATE_ADDITONAL_HELP_TEXT & "<a class='clsALinkNormal' href='" & L_FAQ_MICROSOFT_LINK_TEXT & "' "
  359. Response.Write "Target='_blank'>" & L_WELCOME_INTERNET_EXPLORER_TEXT & "</a></P>"
  360. case 2
  361. Response.Write "<P class='clsPBody'>" & L_STATE_ANALYSISCOMPLETE_DETAILS_TEXT & ""
  362. case 3
  363. Response.Write "<p class='clsPBody'>" & L_STATE_CANNOTPROCESS_DETAILS_TEXT & "</P>"
  364. Response.Write "<p class='clsPBody'>"
  365. Response.Write "<dir style='margin-right:0px;margin-top:0px;margin-bottom:0px'>"
  366. Response.Write "<li>" & L_FAQ_WHATIF_CANNOTPROCESSBODY1_TEXT & "<BR></li>"
  367. Response.Write "<li>" & L_FAQ_WHATIF_CANNOTPROCESSBODY2_TEXT & "<BR></li>"
  368. Response.Write "<li>" & L_FAQ_WHATIF_CANNOTPROCESSBODY3_TEXT & "<BR></li>"
  369. Response.Write "<li>" & L_FAQ_WHATIF_CANNOTPROCESSBODY4_TEXT & "<BR></li>"
  370. Response.Write "</dir>"
  371. Response.Write "</p>"
  372. case 4
  373. Response.Write "<p class='clsPBody'>" & L_STATE_FULLDUMP_REQUIREDDETAILS_TEXT & "</P>"
  374. case 5
  375. Response.Write "<p class='clsPBody'>" & L_STATE_RESEARCHINGMORE_INFOBODY_TEXT & "</p>"
  376. case 16
  377. Response.Write "<P class='clsPBody'>" & L_STATE_STATUS_BODY_TEXT & "</P>"
  378. Response.Write "<p class='clsPBody'>" & L_STATE_ADDITONAL_HELP_TEXT & "<a class='clsALinkNormal' href='" & L_FAQ_MICROSOFT_LINK_TEXT & "' "
  379. Response.Write "Target='_blank'>" & L_WELCOME_INTERNET_EXPLORER_TEXT & "</a></P>"
  380. case else
  381. Response.Write "<P class='clsPBody'>" & L_STATE_STATUS_BODY_TEXT & "</P>"
  382. Response.Write "<p class='clsPBody'>" & L_STATE_ADDITONAL_HELP_TEXT & "<a class='clsALinkNormal' href='" & L_FAQ_MICROSOFT_LINK_TEXT & "' "
  383. Response.Write "Target='_blank'>" & L_WELCOME_INTERNET_EXPLORER_TEXT & "</a></P>"
  384. end select
  385. Response.Write "</td><td width=10% ></td><td nowrap width=55% valign=top rowspan=17><P class='clsPBody'>"
  386. if rsContact.State = adStateOpen then
  387. if rsContact.RecordCount > 0 then
  388. For x = 0 to rsContact.Fields.Count - 10
  389. if isnull(rsContact.Fields(x).Value) = true or rsContact.Fields(x).Value = "" then
  390. if x <> 2 and x <> 13 then
  391. Response.Write arrCompany(x) & ":&nbsp;&nbsp;&nbsp;<br>"
  392. end if
  393. else
  394. if x = 2 or x = 13 then
  395. Response.Write rsContact.Fields(x).Value & "<br>"
  396. elseif x = 9 then
  397. Response.Write arrCompany(x) & ":&nbsp;&nbsp;&nbsp;<a class=clsALinkNormal' target='main' href='" & rsContact.Fields(x).Value & "'>" & rsContact.Fields(x).Value & "</a><br>"
  398. else
  399. Response.Write arrCompany(x) & ":&nbsp;&nbsp;&nbsp;" & rsContact.Fields(x).Value & "<br>"
  400. end if
  401. end if
  402. next
  403. else
  404. 'Response.Write L_STATE_NOCOMPANY_INFORMATIONAVAILABLE_TEXT
  405. end if
  406. else
  407. 'Response.Write L_STATE_NOCOMPANY_INFORMATIONAVAILABLE_TEXT
  408. end if
  409. Response.Write "</p></td></tr>"
  410. Response.Write "<tr><td width=45% valign=bottom>"
  411. if intMessage <> 4 then
  412. %>
  413. <P class="clsPSubTitle">
  414. <%
  415. if len(strKBLists) > 0 then
  416. Response.write "<BR>"
  417. Response.write L_STATE_SPECIFIC_INFORMATION_TEXT
  418. end if
  419. %>
  420. </P>
  421. <%
  422. Response.Write "</td><td></td></tr><tr><td width=45% valign=bottom>"
  423. %>
  424. <P class="clsPBody">
  425. <%
  426. if len(strKBLists) > 0 then
  427. Response.Write strKBLists & "<br>"
  428. end if
  429. if len(strTemplate) > 0 then
  430. if Len(strKBLists) > 0 then
  431. Response.Write "<BR>"
  432. end if
  433. Response.Write strTemplate & "<br>"
  434. end if
  435. %>
  436. <br></p>
  437. <%
  438. Response.Write "</td><td></td></tr><tr><td width=45% valign=bottom>"
  439. %>
  440. <P class="clsPSubTitle">
  441. <%
  442. if len(strKBArts) > 0 or Len(strMoreInfo) > 0 or Len(strINTLKB) > 0 then
  443. Response.Write L_STATE_KNOWLEDGE_BASE_TEXT
  444. end if
  445. %>
  446. </P>
  447. <%
  448. Response.Write "</td><td></td></tr><tr><td width=45% valign=bottom>"
  449. %>
  450. <P class="clsPBody">
  451. <%
  452. if Len(strKBArts) > 0 then
  453. Response.Write strKBArts
  454. end if
  455. if Len(strMoreInfo) > 0 then
  456. Response.Write "<BR>"
  457. Response.Write strMoreInfo
  458. end if
  459. if len(strINTLKB) > 0 then
  460. Response.Write "<BR>"
  461. Response.Write strINTLKB
  462. end if
  463. Response.Write "</td><td></td></tr>"
  464. %>
  465. </p>
  466. <%
  467. else
  468. Response.Write "<tr><td width=45% valign=bottom><p class='clsPSubTitle'>" & L_STATE_FULLDUMPPRIVACYTITLE_INFO_TEXT & "</p></td><td></td></tr>"
  469. Response.Write "<tr><td width=45% valign=bottom><p class='clsPBody'>" & L_STATE_FULLDUMPPRIVACYBODY_INFO_TEXT & "</p></td><td></td></tr>"
  470. Response.Write "<tr><td width=45% valign=bottom><p class='clsPSubTitle'>" & L_STATE_FULLDUMPLOCATIONTITLE_INFO_TEXT & "</p></td><td></td></tr>"
  471. Response.Write "<tr><td width=45% valign=bottom><p class='clsPBody'>" & L_STATE_FULLDUMPLOCATIONBODY_INFO_TEXT
  472. Response.Write "<ol><li>" & L_STATE_FULLDUMPLOCATIONBODY_INFOONE_TEXT & "<li>" & L_STATE_FULLDUMPLOCATIONBODY_INFOTWO_TEXT
  473. Response.Write "<LI>" & L_STATE_FULLDUMPLOCATIONBODY_INFOTHREE_TEXT & "<LI>" & L_STATE_FULLDUMPLOCATIONBODY_INFOFOUR_TEXT
  474. Response.write "<LI>" & L_STATE_FULLDUMPLOCATIONBODY_INFOFIVE_TEXT & "<LI>" & L_STATE_FULLDUMPLOCATIONBODY_INFOSIX_TEXT
  475. Response.Write "</ol></p></td><td></td></tr>"
  476. Response.Write "<tr><td width=45% valign=bottom><p class='clsPSubTitle'>" & L_STATE_FULLDUMPSUBMITTALTITLE_INFO_TEXT & "</p></td><td></td></tr>"
  477. Response.Write "<tr><td width=45% valign=bottom><p class='clsPBody'>" & L_STATE_FULLDUMPSUBMITTALBODY_INFO_TEXT
  478. Response.Write "<ol><li>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOONE_TEXT & "<li>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOTWO_TEXT
  479. Response.Write "<LI>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOTHREE_TEXT & "<LI>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOFOUR_TEXT
  480. Response.write "<LI>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOFIVE_TEXT
  481. Response.Write "<dir><li>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOFIVESUBONE_TEXT & "<LI>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOFIVESUBTWO_TEXT & "</dir>"
  482. Response.Write "<LI>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOSIX_TEXT
  483. Response.Write "<dir><li>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOSIXSUBONE_TEXT & "<LI>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOSIXSUBTWO_TEXT
  484. Response.Write "<li>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOSIXSUBTHREE_TEXT & "<li>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOSIXSUBFOUR_TEXT & "<LI>" & L_STATE_FULLDUMPSUBMITTALBODY_INFOSIXSUBFIVE_TEXT & "</dir>"
  485. Response.Write "</ol></p></td><td></td></tr>"
  486. end if
  487. Response.Write "</tbody></table>"
  488. %>
  489. <P class="clsPBody">
  490. <Table class="clstblLinks">
  491. <thead>
  492. <tr>
  493. <td>
  494. </td>
  495. </tr>
  496. </thead>
  497. <tbody>
  498. <tr>
  499. <td nowrap class="clsTDLinks">
  500. <A class="clsALink" href="JAVASCRIPT:window.navigate('status.asp');"><% = L_DETAILS_STATUS_BODY_TEXT %></a>
  501. </td>
  502. </tr>
  503. </tbody>
  504. </table>
  505. </P>
  506. </div>
  507. <br>
  508. </form>
  509. <%
  510. Call CDestroyObjects
  511. %>
  512. <%
  513. Else
  514. response.write "no good"
  515. End If
  516. %>
  517. <!--#include file="include\asp\foot.asp"-->