/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/production/daily_plan.aspx
59 строк
2 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="daily_plan.aspx.vb" Inherits="Production_daily_plan" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <link href="../Styles/page.css" rel="stylesheet" /> <style> td, th { padding: 5px; text-align: center; border: 1px solid gray; } html, form, body { width: 100%; height: 100%; margin: 0; } </style> <title>Daily production plan</title> <script src="../Scripts/jquery-1.9.1.min.js"></script> </head> <body> <form id="form1" runat="server"> <div style="text-align: center; "> Start date: <asp:TextBox ID="txtStartDate" runat="server" TextMode="Date"></asp:TextBox> End date: <asp:TextBox ID="txtEndDate" runat="server" TextMode="Date"></asp:TextBox> Line: <asp:TextBox ID="txtLine" runat="server" ></asp:TextBox> Model: <asp:TextBox ID="txtModel" runat="server" ></asp:TextBox> <asp:ImageButton ID="btnRefresh" runat="server" ImageUrl="~/Images/Refresh.png" /> <asp:ImageButton ID="btnToExcel" runat="server" ImageUrl="~/Images/Excel1.png" /> </div> <hr /> <div class="main" style="overflow-y: scroll; height: 1070px;"> <asp:GridView ID="GridView1" runat="server"></asp:GridView> <br /> <asp:Table ID="gvTheGrid" runat="server" Style="margin: 0 auto;" CellPadding="5" CellSpacing="0"> </asp:Table> </div> <script type="text/javascript"> $(document).ready(function () { $(".main").height($("html").height() - 65); //$("#gantt_here").height($(".main").height() - 15); //$(".upmain").css("height", ($(".main").height() - 120) + "px"); //callSrv(); }); </script> </form> </body> </html>