/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/pc/invstat.aspx
103 строки
5 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="invStat.aspx.vb" Inherits="PC_invStat" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> <%@ Register Src="../UserControls/pivotForTable.ascx" TagName="pivotForTable" TagPrefix="uc1" %> <%@ Register Src="../UserControls/editableGrid.ascx" TagName="editableGrid" TagPrefix="uc2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title>Inventory Status</title> <style type="text/css"> body { font-family: Calibri; font-size: 12px; background-color: #f0f0f2; } #tblBody td { vertical-align: top; text-align: center; } #tblBody { width: 99%; } a { text-decoration: none; } </style> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager> <asp:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0" Width="1000px" style="margin: 0 auto;"> <asp:TabPanel runat="server" HeaderText="Status" ID="tpStatus"> <ContentTemplate> <table style="margin: 0 auto; border-collapse: collapse ;"> <tr> <td>From: </td> <td> <asp:TextBox ID="txtFrom" runat="server" Width="75px" AutoPostBack="True"></asp:TextBox> <asp:CalendarExtender ID="txtFrom_CalendarExtender" runat="server" Enabled="True" TargetControlID="txtFrom" Format="yyyy-MM-dd" FirstDayOfWeek="Monday"> </asp:CalendarExtender> </td> <td> To: </td> <td> <asp:TextBox ID="txtTo" runat="server" Width="75px" AutoPostBack="True"></asp:TextBox> <asp:CalendarExtender ID="txtTo_CalendarExtender" runat="server" Enabled="True" TargetControlID="txtTo" Format="yyyy-MM-dd" FirstDayOfWeek="Monday"> </asp:CalendarExtender> </td> <td> <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/Images/Refresh.png" Style="padding-left: 15px;" /> </td> <td> <asp:ImageButton ID="ibExcelDownload" runat="server" ImageUrl="~/Images/Microsoft Office 2003 Excel.png" Height="26px" Width="26px" Style="padding-left: 15px;" /> </td> </tr> </table> <asp:GridView ID="GridView1" runat="server" BackColor="#CCCCCC" BorderColor="#999999" BorderStyle="Solid" BorderWidth="3px" CellPadding="4" CellSpacing="2" ForeColor="Black" style="margin: 0 auto;"> <AlternatingRowStyle BackColor="#D1E1FF" /> <FooterStyle BackColor="#CCCCCC" /> <HeaderStyle BackColor="#003A82" Font-Bold="True" ForeColor="White" /> <PagerStyle BackColor="#CCCCCC" ForeColor="Black" HorizontalAlign="Left" /> <RowStyle BackColor="White" /> <SelectedRowStyle BackColor="#000099" Font-Bold="True" ForeColor="White" /> <SortedAscendingCellStyle BackColor="#F1F1F1" /> <SortedAscendingHeaderStyle BackColor="Gray" /> <SortedDescendingCellStyle BackColor="#CAC9C9" /> <SortedDescendingHeaderStyle BackColor="#383838" /> </asp:GridView> <uc2:editableGrid ID="edPendingReport" runat="server" tableid="262"> </uc2:editableGrid> <uc2:editableGrid ID="edDifferentReport" runat="server" TableId="263" > </uc2:editableGrid> </ContentTemplate> </asp:TabPanel> <asp:TabPanel ID="tpDetails" runat="server" HeaderText="Details"> <ContentTemplate> <uc2:editablegrid id="edDetails" runat="server" tableid="264" /> <uc2:editableGrid ID="edPending" runat="server" TableId="262"></uc2:editableGrid> <uc2:editableGrid ID="edDifferent" runat="server" TableId="263"></uc2:editableGrid> </ContentTemplate> </asp:TabPanel> </asp:TabContainer> </div> </form> </body> </html>