12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta http-equiv="Pragma" content="no-cache">
- <meta http-equiv="Cache-Control" content="no-cache">
- <meta http-equiv="Expires" content="0">
- <title>后台管理</title>
- <script src="../../lib/jquery/dist/jquery.js"></script>
- <script src="~/js/Utility.js"></script>
- <script src="~/js/home/home.js"></script>
- </head>
- <body>
- <div>
- <span style="font-size:50px">参数点检服务</span>
- <input id="StartBtn" value="启动" style="width:100px;height:50px" type="button">
- <input id="GetStatusBtn" value="获取状态" style="width:100px;height:50px" type="button">
- <input id="StopBtn" value="停止" style="width:100px;height:50px" type="button">
- <h1 id="StatusInfo" style="display:inline-block"></h1>
- </div>
- </body>
- </html>
|