zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    软件测试(理论基础)
    Android NDK常见配置问题的解决方案
    Eclemma各种安装方式以及安装失败解决
    检测Buffer Overflow的几种方法
    转: 跟我一起写 Makefile
    流敏感、路径敏感、上下文敏感
    Symbolic Exectuion with Mixed ConcreteSymbolic Solving
    基于ajc的代码编织
    第一次个人编程作业
    第一次博客作业
  • 原文地址:https://www.cnblogs.com/wpcnblog/p/4739409.html
Copyright © 2011-2022 走看看