Source code of Windows XP (NT5)
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
1.7 KiB

  1. <%
  2. ' ***************** Wizard
  3. If Request.Form("theme") <> "" Then
  4. myinfo.Theme = Request.Form("Theme")
  5. End If
  6. If Request.Form("guestbook") <> "" Then
  7. myinfo.Guestbook = Request.Form("guestbook")
  8. End If
  9. If Request.Form("messages") <> "" Then
  10. myinfo.Messages = Request.Form("messages")
  11. End If
  12. ' ***************** Template
  13. Sub variableAssignments
  14. If request.Form("basics") <> "" Then
  15. If request.Form("Theme") <> "" Then
  16. myinfo.Theme = request.Form("Theme")
  17. Theme = myinfo.Theme
  18. End If
  19. End If
  20. If request.Form("contents") <> "" Then
  21. If Request.Form("guestbook") <> "" Then
  22. myinfo.Guestbook = Request.Form("guestbook")
  23. Else
  24. myinfo.Guestbook = "0"
  25. End If
  26. If Request.Form("messages") <> "" Then
  27. myinfo.Messages = Request.Form("messages")
  28. Else
  29. myinfo.Messages = "0"
  30. End If
  31. myinfo.Title = request.Form("title")
  32. myinfo.faxPhone = request.Form("faxPhone")
  33. myinfo.Address1 = request.Form("Address1")
  34. myinfo.Address2 = request.Form("Address2")
  35. myinfo.Address3 = request.Form("Address3")
  36. myinfo.Address4 = request.Form("Address4")
  37. myinfo.Department = request.Form("Department")
  38. myinfo.Phone = request.Form("Phone")
  39. myinfo.Email = request.Form("Email")
  40. myinfo.Name = request.Form("Name")
  41. myinfo.Heading1 = request.Form("Heading1")
  42. myinfo.Words1 = request.Form("Words1")
  43. myinfo.Heading2 = request.Form("Heading2")
  44. myinfo.Words2 = request.Form("Words2")
  45. myinfo.Heading3 = request.Form("Heading3")
  46. myinfo.Words3 = request.Form("Words3")
  47. myinfo.Heading4 = request.Form("Heading4")
  48. myinfo.Words4 = request.Form("Words4")
  49. End If
  50. End Sub
  51. %>