/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/production/capa_history(new).aspx
165 строк
6 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Capa_history(new).aspx.vb" Inherits="r" %> <%@ Register Src="~/UserControls/editableGridNew.ascx" TagPrefix="uc1" TagName="editableGridNew" %> <%@ Register Src="~/UserControls/alerter.ascx" TagPrefix="uc1" TagName="alerter" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Capa history</title> <script src="../Scripts/jquery-1.9.1.min.js"></script> <script src="../Scripts/bootstrap.js"></script> <script src="../Scripts/popover.js"></script> <style> #blink { -webkit-animation: blink 2s linear infinite; animation: blink 2s linear infinite; } @-webkit-keyframes blink { 50% { color: rgb(255, 0, 0); } } @keyframes blink { 50% { color: rgb(255, 0, 0); } } @font-face { font-family: "Agency FB"; src: url('../fonts/AGENCYB.TTF'); } html, body, form { width: 100%; height: 100%; background-color: transparent; font-family: 'Agency FB', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 18pt !important; margin: 0; } table { width: 100%; height: 100%; text-align : center; } #report td { height: 7%; font-size: 20pt; } .remark { font-size: 20pt !important; } .time { font-size: 40pt !important; } th{ background-color: steelblue; color: white; font-size: 26pt; } .footer td{ background-color: steelblue; color: white; font-size: 26pt; } caption { color: White; font-weight: bold; background-color: DarkGray; } </style> </head> <body> <form id="form1" runat="server"> <div> <%-- FITST TABLE ------------------------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------------------- --%> <table border="0"> <tr> <td> <asp:Label ID="Year_label" runat="server" Text="Year: "></asp:Label> <asp:TextBox ID="Year" runat="server"></asp:TextBox> </td> <td> <asp:Label ID="Line_label" runat="server" Text="Line: "></asp:Label> <asp:TextBox ID="Line" runat="server"></asp:TextBox> </td> <td> <asp:Label ID="Group_label" runat="server" Text="Group: "></asp:Label> <asp:TextBox ID="Group" runat="server"></asp:TextBox> </td> <td> <asp:Label runat="server" ID="Week_start" Text="From week: "></asp:Label> <input type="week" id="stat_week_from" runat="server" /><br /> </td> <td> <asp:Label runat="server" ID="Week_end" Text="To week: "></asp:Label> <input type="week" id="stat_week_end" runat="server" /> <br /> </td> </tr><tr> <td colspan="5"> <asp:Button ID="Button1" runat="server" Text="Apply filters" /> <asp:ImageButton ID="ibExcelDownload" runat="server" Height="27px" CssClass="vcenter" ImageUrl="http://serkweb.serk.lan:8080/modulemaster/Images/Microsoft%20Office%202003%20Excel.png" /> <br /> </td> </tr> </table> <asp:GridView ID="report" runat="server" CellPadding="4" ForeColor="#333333" Style="margin: 0 auto;" AutoGenerateColumns="true" HorizontalAlign="Center" EditIndex="-1" Height="90"> <AlternatingRowStyle BackColor="White" /> <EditRowStyle BackColor="#2461BF" /> <EmptyDataRowStyle BackColor="Red" /> <FooterStyle BackColor="#229EE5" Font-Bold="True" ForeColor="White" /> <HeaderStyle BackColor="#229EE5" Font-Bold="True" ForeColor="White" /> <PagerSettings Mode="NumericFirstLast" PageButtonCount="5" /> <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> <RowStyle BackColor="#EFF3FB" HorizontalAlign="Center" VerticalAlign="Middle" /> <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> <SortedAscendingCellStyle BackColor="#F5F7FB" /> <SortedAscendingHeaderStyle BackColor="#6D95E1" /> <SortedDescendingCellStyle BackColor="#E9EBEF" /> <SortedDescendingHeaderStyle BackColor="#4870BE" /> <%-- <Columns> <asp:BoundField DataField="year" Visible="true" HeaderText="Year" /> <asp:BoundField DataField="Model" Visible="true" HeaderText="Model"/> <asp:BoundField DataField="Planner's TackTime" Visible="true" HeaderText="Planner's TackTime"/> <asp:BoundField DataField="Line" Visible="true" HeaderText="Line"/> <asp:BoundField DataField="Catalog Capa" Visible="true" HeaderText="Catalog Capa"/> <asp:BoundField DataField="Catalog TackTime" Visible="true" HeaderText="Catalog TackTime"/> <asp:BoundField DataField="Upload date" Visible="true" HeaderText="Upload date"/> </Columns>--%> </asp:GridView> <asp:SqlDataSource ID="queue" runat="server" ConnectionString="<%$ ConnectionStrings:CATVConnectionString %>"></asp:SqlDataSource> </div> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> </form> </body> </html>