• bootstrap简单的签收页面


    http://aqvatarius.com/themes/atlant/html/ui-icons.html

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SignOrder.aspx.cs" Inherits="MIRService.SignOrder" %>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <title>订单签收</title>
    <META HTTP-EQUIV="pragma" CONTENT="no-cache">
    <META HTTP-EQUIV="Cache-Control" CONTENT="no-store, must-revalidate">
    <meta name="description" content="" />
    <meta name="author" content="Administrator" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <form id="form1" runat="server" action="val02.aspx" method="post" class="form-inline">
      <div class="container-fluid">
          <div class="page-header">
            <h2 class="text-center"><small>订单号:</small><%=ht["SOURCEBILLNO"] %></h2>
        </div>
        
        <div class="panel panel-default">
          <div class="panel-heading">订单基本信息</div>
          <div class="panel-body">
              <ul class="list-group">
              <li class="list-group-item list-group-item-success"><small>联系人:</small><%=ht["CONTACTNAME"] %></li>
              <li class="list-group-item list-group-item-info">
                <small>地址:</small><%=ht["SENDADDRESS"] %>
              </li>
              <li class="list-group-item list-group-item-danger">
                  <small>总金额:</small><strong><%=ht["TOTALMONEY"] %></strong>
              </li>
            </ul>
          </div>
        </div>
        
        <table class="table table-condensed">
          <thead>
              <tr>
                <th>物料名称</th>
                <th>数量</th>
            </tr>
          </thead>
          <tbody>
            <%
                        foreach(Hashtable t in list)
                        {
                            %>
            <tr>
              <td><%=t["PRODUCTNAME"] %></td>
              <td><%=t["QUANTITY"] %></td>
            </tr>
            <%
                        }
                    %>
          </tbody>
        </table>
        <div class="well text-center">
            <div class="form-group">
                <input name="loginid" type="text" class="form-control" placeholder="工号"/>
                <input type="hidden" name="orderid" value="<%=ht["FROMSTORE"] %>" />
            </div>
            <button class="btn btn-success">签收</button>
        </div>
      </div>
    </form>
    </body>
    </html>
  • 相关阅读:
    magento模板中XML与phtml关系 [四]
    magento 好好玩
    凹凸曼的修改zencart 程序(经典!)
    首页商品图片显示错位,easy-popular批量上传
    1.7-BGP①
    1.6-路由的控制③
    1.6-路由的控制②
    1.6-路由的控制①
    1.5
    1.4-动态路由协议OSPF⑧
  • 原文地址:https://www.cnblogs.com/wpcnblog/p/4739409.html
Copyright © 2020-2023  润新知