⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 store.aspx

📁 c++builder开发的一个仓库信息管理系统
💻 ASPX
字号:
<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="store.aspx.vb" Inherits="Mode4_store" title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <table style="width: 800px; background-color: #ebffff">
        <tr>
            <td align="center" colspan="6" style="width: 200px; height: 21px; background-color: #f4ffff">
                <strong>库存查询</strong></td>
        </tr>
        <tr>
            <td align="left" colspan="6" style="background-image: url(images/lantian.jpg); background-repeat: repeat">
                请选择您要统计的条件:</td>
        </tr>
        <tr>
            <td align="center" colspan="6" style="height: 22px">
                <asp:CheckBox ID="Check_no" runat="server" Text="货品编码" />
                &nbsp; &nbsp;&nbsp;
                <asp:CheckBox ID="Check_name" runat="server" Text="货品名称" />
                &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<asp:CheckBox ID="Check_number"
                    runat="server" CausesValidation="True" Text="当前存量" />
                &nbsp; &nbsp; &nbsp;&nbsp;
                <asp:CheckBox ID="Check_class" runat="server" Text="类别编码" />
            </td>
        </tr>
        <tr>
            <td align="left" colspan="6" style="background-image: url(images/lantian.jpg); background-repeat: repeat;
                height: 20px">
                确定否:</td>
        </tr>
        <tr>
            <td align="center" colspan="6" style="height: 26px">
                &nbsp;
                <asp:Button ID="Button1" runat="server" Text="确定条件" Width="100px" />
                <asp:Button ID="Button2" runat="server" Text="重新选择" Width="100px" />
                &nbsp;
            </td>
        </tr>
        <tr>
            <td align="left" colspan="6" style="background-image: url(images/lantian.jpg); background-repeat: repeat;
                height: 20px">
                请输入检索条件:</td>
        </tr>
        <tr>
            <td align="center" colspan="6" style="height: 50px">
                <asp:Button ID="find" runat="server" Text="查询" Width="100px" />
                <asp:Button ID="cancel" runat="server" Text="返回" Width="100px" />
            </td>
        </tr>
    </table>
    <asp:Panel ID="Panel3" runat="server" Height="50px" Style="width: 800px" Width="125px">
        <table style="width: 800px">
            <tr>
                <td align="right" style="width: 100px; height: 21px">
                    货品编码:</td>
                <td align="left" style="width: 100px; height: 21px">
                    <asp:TextBox ID="TextBox1" runat="server" Width="100px"></asp:TextBox></td>
                <td align="right" style="width: 100px; height: 21px">
                    货品名称:</td>
                <td align="left" style="width: 100px; height: 21px">
                    <asp:TextBox ID="TextBox2" runat="server" Width="100px"></asp:TextBox></td>
            </tr>
            <tr>
                <td align="right" style="width: 100px; height: 26px">
                    当前存量:</td>
                <td align="left" style="width: 100px; height: 26px">
                    <asp:TextBox ID="TextBox3" runat="server" Width="100px"></asp:TextBox></td>
                <td align="right" style="width: 100px; height: 26px">
                    类别编码:</td>
                <td align="left" style="width: 100px; height: 26px">
                    <asp:TextBox ID="TextBox4" runat="server" Width="100px"></asp:TextBox></td>
            </tr>
        </table>
    </asp:Panel>
    <asp:DataGrid ID="DataGrid1" runat="server" AutoGenerateColumns="False" CellPadding="4"
        ForeColor="#333333" GridLines="None" Width="800px">
        <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
        <EditItemStyle BackColor="#2461BF" />
        <SelectedItemStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
        <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
        <AlternatingItemStyle BackColor="White" />
        <ItemStyle BackColor="#EFF3FB" />
        <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
        <Columns>
            <asp:BoundColumn DataField="ThingNo" HeaderText="货品编码">
                <ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
                <HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
            </asp:BoundColumn>
            <asp:BoundColumn DataField="ThingName" HeaderText="货品名称">
                <ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
                <HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
            </asp:BoundColumn>
            <asp:BoundColumn DataField="classname" HeaderText="所属类别">
                <ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
                <HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
            </asp:BoundColumn>
            <asp:BoundColumn DataField="StockNumber" HeaderText="当前存量">
                <ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
                <HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
            </asp:BoundColumn>
            <asp:BoundColumn DataField="Remark" HeaderText="备注">
                <ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
                <HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
                    Font-Underline="False" HorizontalAlign="Center" />
            </asp:BoundColumn>
        </Columns>
    </asp:DataGrid>&nbsp;
</asp:Content>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -