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

📄 invoinfo.aspx

📁 易想商城系统
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true"  CodeBehind="invoInfo.aspx.cs" Inherits="YXShop.Web.Admin.Orders.invoInfo" %>

<!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></title>
    <link href="../CSS/sys.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:Repeater ID="Repeater2" runat="server">
        <HeaderTemplate>
            <table style="width:100%">
            <tr class="head"><th>日期</th>
            <th>发票类型</th>
            <th>发票号码</th>
            <th>发票抬头</th>
            <th>金额</th>
            <th>开票人</th>
            <th>录入人</th>
            <th>录入时间</th>
            </tr>
        </HeaderTemplate>
        <AlternatingItemTemplate>
        <tr class="tdBg"><td><%# Eval("InvoiceDate")%></td>
            <td><%# Eval("InvoiceType")%></td>
            <td><%# Eval("InvoiceNumber")%></td>
            <td><%# Eval("InvoiceRise")%></td>
            <td><%# Eval("InvoiceMoney")%></td>
            <td><%# Eval("UserName")%></td>
            <td><%# Eval("NoteName")%></td>
            <td><%# Eval("NoteDate")%></td>
            </tr>
        </AlternatingItemTemplate>
        <ItemTemplate>
          <tr><td><%# Eval("InvoiceDate")%></td>
            <td><%# Eval("InvoiceType")%></td>
            <td><%# Eval("InvoiceNumber")%></td>
            <td><%# Eval("InvoiceRise")%></td>
            <td><%# Eval("InvoiceMoney")%></td>
            <td><%# Eval("UserName")%></td>
            <td><%# Eval("NoteName")%></td>
            <td><%# Eval("NoteDate")%></td>
            </tr>
        </ItemTemplate>
        <FooterTemplate>
            </table>
        </FooterTemplate>
        </asp:Repeater>
    </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

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