AddProduct.aspx
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:2k
源码类别:

Email客户端

开发平台:

Visual C++

  1. <%@ Page Language="C#" MasterPageFile="~/Admin/MasterPage.master" AutoEventWireup="true" CodeFile="AddProduct.aspx.cs" Inherits="Manage_AddProduct" Title="商品添加" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="main" Runat="Server">
  3. <link rel="shortcut icon" type="image/ico" href="../favicon.ico"/>
  4.     <table style="width: 681px; height: 403px">
  5.         <tr>
  6.             <td style="width: 100px; text-align: right">
  7.                 商品名字:</td>
  8.             <td style="width: 100px">
  9.                 <asp:TextBox ID="nametxt" runat="server" Width="289px"></asp:TextBox></td>
  10.         </tr>
  11.         <tr>
  12.             <td style="width: 100px; text-align: right">
  13.                 提示标语:</td>
  14.             <td style="width: 100px">
  15.                 <asp:TextBox ID="bytxt" runat="server" Width="289px"></asp:TextBox></td>
  16.         </tr>
  17.         <tr>
  18.             <td style="width: 100px; text-align: right">
  19.                 市场价格:</td>
  20.             <td style="width: 100px">
  21.                 <asp:TextBox ID="scjgtxt" runat="server" Width="289px"></asp:TextBox></td>
  22.         </tr>
  23.         <tr>
  24.             <td style="width: 100px; text-align: right">
  25.                 会员价格:</td>
  26.             <td style="width: 100px">
  27.                 <asp:TextBox ID="menbertxt" runat="server" Width="289px"></asp:TextBox></td>
  28.         </tr>
  29.         <tr>
  30.             <td style="width: 100px; text-align: right">
  31.                 物品重量:</td>
  32.             <td style="width: 100px">
  33.                 <asp:TextBox ID="TextBox1" runat="server" Width="289px"></asp:TextBox></td>
  34.         </tr>
  35.         <tr>
  36.             <td style="width: 100px; text-align: right">
  37.                 商品描述:</td>
  38.             <td style="width: 100px">
  39.                 <asp:TextBox ID="mstxt" runat="server" Height="105px" TextMode="MultiLine" Width="353px"></asp:TextBox></td>
  40.         </tr>
  41.         <tr>
  42.             <td style="width: 100px">
  43.             </td>
  44.             <td style="width: 100px">
  45.                 <asp:Button ID="addbtn" runat="server" OnClick="addbtn_Click" Text="确认添加" /></td>
  46.         </tr>
  47.     </table>
  48. </asp:Content>