码迷,mamicode.com
首页 > 其他好文 > 详细

bootstrap简单的签收页面

时间:2015-08-18 15:54:00      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

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>

 

bootstrap简单的签收页面

标签:

原文地址:http://www.cnblogs.com/wpcnblog/p/4739409.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!