Default.aspx 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <%@ Page
  2. Language = "C#"
  3. AutoEventWireup = "false"
  4. Inherits = "Migrator.Web.Default"
  5. ValidateRequest = "false"
  6. EnableSessionState = "false"
  7. %>
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  9. <html xmlns="http://www.w3.org/1999/xhtml">
  10. <head>
  11. <title>Migrator.Web</title>
  12. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  13. <meta http-equiv="CACHE-CONTROL" content="NO-CACHE" />
  14. <meta http-equiv="PRAGMA" content="NO-CACHE" />
  15. <link href="Migrator.Web.css" type="text/css" rel="stylesheet" />
  16. </head>
  17. <body>
  18. <form id="Form1" method="post" runat="server">
  19. <!-- Site Code goes here! -->
  20. <table class="feature">
  21. <tr>
  22. <th colspan="2">
  23. Run Migration
  24. </th>
  25. </tr
  26. <tr>
  27. <td>
  28. Current Database Latest Version:
  29. </td>
  30. <td>
  31. <asp:Label id="_LatestVersion" runat="server" />
  32. </td>
  33. </tr>
  34. <tr>
  35. <td>
  36. Migrate To:
  37. </td>
  38. <td>
  39. <asp:DropDownList id="_availableVersions" runat="server" />
  40. </td>
  41. </tr>
  42. <tr>
  43. <td colspan="2">
  44. <asp:Button id="_runMigration" text="Run Migration" runat="server" />
  45. </td>
  46. </tr>
  47. </table>
  48. </form>
  49. </body>
  50. </html>