Index.cshtml 988 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <meta http-equiv="Pragma" content="no-cache">
  6. <meta http-equiv="Cache-Control" content="no-cache">
  7. <meta http-equiv="Expires" content="0">
  8. <title>后台管理</title>
  9. <script src="../../lib/jquery/dist/jquery.js"></script>
  10. <script src="~/js/Utility.js"></script>
  11. <script src="~/js/home/home.js"></script>
  12. </head>
  13. <body>
  14. <div>
  15. <span style="font-size:50px">RMS服务</span>
  16. <input id="StartBtn" value="启动" style="width:100px;height:50px" type="button">
  17. <input id="RefreshBtn" value="刷新指令" style="width:100px;height:50px" type="button">
  18. <input id="GetStatusBtn" value="获取状态" style="width:100px;height:50px" type="button">
  19. <input id="StopBtn" value="停止" style="width:100px;height:50px" type="button">
  20. <h1 id="StatusInfo" style="display:inline-block"></h1>
  21. </div>
  22. </body>
  23. </html>