⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pro_auction_add.aspx

📁 易想商城系统
💻 ASPX
字号:
<%@ Page Language="C#" MasterPageFile="~/Admin/Masterpage/Page.Master" AutoEventWireup="true" CodeBehind="Pro_Auction_Add.aspx.cs" Inherits="YXShop.Web.Admin.Product.Pro_Auction_Add" %>

<%@ Register src="../Control/SelectProduct.ascx" tagname="SelectProduct" tagprefix="uc1" %>
<%@ Register Assembly="DatePicker" Namespace="CustomControls" TagPrefix="cc1" %>
<asp:Content ID="Contenthaed" runat="server" ContentPlaceHolderID="head">

    <script src="../JS/Calendar.js" type="text/jscript"></script>
   <script src="../JS/CheckDataFunction.js" type="text/jscript"></script>
</asp:Content>

<asp:Content ID="Contenttitel" runat="server" ContentPlaceHolderID="ContentPlaceTitle">
    拍卖管理
</asp:Content>

<asp:Content ID="Contentmian" runat="server" ContentPlaceHolderID="ContentPlaceHolderMain">
    <table width="100%" border="0"  cellspacing="1" cellpadding="1" class="hy"  BackColor="#5D8FB2">
  <tr>
    <td width="12%">拍卖名称</td>
    <td width="84%">
        <asp:TextBox ID="txtpmc" runat="server" MaxLength="30" Width="25%"></asp:TextBox>
         <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtpmc" ErrorMessage=" * 拍卖名称必填!"></asp:RequiredFieldValidator>
      </td>
    <td width="4%">&nbsp;</td>
  </tr>
  <tr>
    <td width="12%">拍卖商品:</td>
    <td width="84%">
       <uc1:SelectProduct ID="SelectProduct1" runat="server" width="30%" />
        <asp:Label ID="lbselPro" runat="server" ForeColor="Red"></asp:Label>
      </td>
    <td width="4%">&nbsp;</td>
  </tr>
  <tr>
    <td>开始时间:</td>
    <td><cc1:DatePicker ID="dpStart" runat="server" txtWidth="70" /></td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>结束时间:</td>
    <td><cc1:DatePicker ID="dpEnd" runat="server" txtWidth="70" /></td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>起 拍 价:</td>
    <td>
        <asp:TextBox ID="txtqpj" runat="server" MaxLength="10" Width="25%"></asp:TextBox>
        <asp:RequiredFieldValidator ID="RequiredFieldValidator2" ControlToValidate="txtqpj" runat="server" ErrorMessage=" * 该项必填!"></asp:RequiredFieldValidator>
        <asp:RegularExpressionValidator ID="RegularExpressionValidator1" 
                                        runat="server" ControlToValidate="txtqpj" ErrorMessage=" * 起拍价必须是数字!" 
                                        ValidationExpression="^(-?\d+)(\.\d+)?$"></asp:RegularExpressionValidator>
      </td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>加价幅度:</td>
    <td>
        <asp:TextBox ID="txtjjfd" runat="server" MaxLength="10" Width="25%"></asp:TextBox>
        <asp:RequiredFieldValidator ID="RequiredFieldValidator3" ControlToValidate="txtjjfd" runat="server" ErrorMessage=" * 该项必填!"></asp:RequiredFieldValidator>
        <asp:RegularExpressionValidator ID="RegularExpressionValidator2" 
                                        runat="server" ControlToValidate="txtjjfd" ErrorMessage=" * 加价幅度必须是数字!" 
                                        ValidationExpression="^[1-9]\d*$"></asp:RegularExpressionValidator>
      </td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>保 证 金:</td>
    <td>
        <asp:TextBox ID="txtbzj" runat="server" MaxLength="10" Width="25%"></asp:TextBox>
        <asp:RegularExpressionValidator ID="RegularExpressionValidator3" 
                                        runat="server" ControlToValidate="txtbzj" ErrorMessage=" * 保证金必须是数字!" 
                                        ValidationExpression="^(-?\d+)(\.\d+)?$"></asp:RegularExpressionValidator>
      </td>
    <td>&nbsp;</td>
  </tr>
 
  <tr>
    <td>拍卖描述:</td>
    <td>
        <asp:TextBox ID="txtpmms" runat="server" TextMode="MultiLine" Height="135px" 
            Width="318px"></asp:TextBox>
      </td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td  align ="center">
        <asp:Button ID="Button1" runat="server"   Text="提  交" onclick="Button1_Click" />
      </td>
    <td>&nbsp;</td>
  </tr>

</table>
</asp:Content>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -