贫民窟里的程序高手

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

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>

 

posted on 2015-08-18 14:55  贫民窟里的程序高手  阅读(287)  评论(0编辑  收藏  举报