Index.cshtml 888 B

12345678910111213141516171819202122
  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">Lot服务</span>
  16. <input id="StartBtn" value="启动" style="width:100px;height:50px" type="button">
  17. <input id="GetStatusBtn" value="获取状态" style="width:100px;height:50px" type="button">
  18. <input id="StopBtn" value="停止" style="width:100px;height:50px" type="button">
  19. <h1 id="StatusInfo" style="display:inline-block"></h1>
  20. </div>
  21. </body>
  22. </html>