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

Email客户端

开发平台:

Visual C++

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ChanceItem.aspx.cs" Inherits="Module_Employee_Relation_ChanceItem" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>机会与项目</title>
  6. </head>
  7. <body style="background-image: url(../../Images/SysSkin/chanceitem.jpg); background-repeat: no-repeat; text-align: center">
  8.     <form id="form1" runat="server">
  9.     <div style="text-align: center">
  10.         <br />
  11.         <br />
  12.         <table cellpadding="0" cellspacing="0" style="width: 605px; height: 132px">
  13.             <tr>
  14.                 <td colspan="3" rowspan="3" style="vertical-align: top; text-align: center">
  15.                     <asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">
  16.                         <table cellpadding="0" cellspacing="0" style="width: 605px">
  17.                             <tr>
  18.                                 <td colspan="3">
  19.                                     <table cellpadding="0" cellspacing="0" style="width: 600px">
  20.                                         <tr>
  21.                                             <td style="width: 100px; height: 23px">
  22.                                                 <span style="font-size: 9pt">查找类别</span></td>
  23.                                             <td style="width: 120px; height: 23px; text-align: left">
  24.                                                 <asp:DropDownList ID="dropClass" runat="server" Font-Size="9pt" Width="120px">
  25.                                                     <asp:ListItem>项目ID</asp:ListItem>
  26.                                                     <asp:ListItem>项目名称</asp:ListItem>
  27.                                                     <asp:ListItem>订单编号</asp:ListItem>
  28.                                                 </asp:DropDownList></td>
  29.                                             <td style="width: 100px; height: 23px">
  30.                                                 <span style="font-size: 9pt">关键字</span></td>
  31.                                             <td style="width: 120px; height: 23px; text-align: left">
  32.                                                 <asp:TextBox ID="txtKeyWord" runat="server" Font-Size="9pt" Width="120px"></asp:TextBox></td>
  33.                                             <td style="width: 12px; height: 23px">
  34.                                                 <asp:Button ID="btnFind" runat="server" Font-Size="9pt" OnClick="btnFind_Click" Text="查找" /></td>
  35.                                             <td style="height: 23px">
  36.                                                 <asp:LinkButton ID="lnkbtnAdd" runat="server" Font-Size="9pt" Font-Underline="False"
  37.                                                     ForeColor="#FF3333" OnClick="lnkbtnAdd_Click1" Visible="False">添加新记录</asp:LinkButton></td>
  38.                                         </tr>
  39.                                     </table>
  40.                                 </td>
  41.                             </tr>
  42.                             <tr>
  43.                                 <td colspan="3" style="vertical-align: top; height: 114px; text-align: center">
  44.                                     <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False"
  45.                                         Font-Size="9pt" OnPageIndexChanging="GridView1_PageIndexChanging" Width="605px">
  46.                                         <Columns>
  47.                                             <asp:BoundField DataField="ID" HeaderText="项目ID" />
  48.                                             <asp:BoundField DataField="ItemName" HeaderText="项目名称" />
  49.                                             <asp:BoundField DataField="ClientName" HeaderText="客户名称" />
  50.                                             <asp:BoundField DataField="ItemPrincipal" HeaderText="项目负责人" />
  51.                                             <asp:HyperLinkField DataNavigateUrlFields="ID" DataNavigateUrlFormatString="ChanceItemInfo.aspx?ID={0}"
  52.                                                 HeaderText="查看详情" Text="查看" />
  53.                                         </Columns>
  54.                                     </asp:GridView>
  55.                                 </td>
  56.                             </tr>
  57.                         </table>
  58.                     </asp:Panel>
  59.                     <asp:Panel ID="Panel2" runat="server" Height="50px" Visible="False">
  60.                         <table cellpadding="0" cellspacing="0" style="font-size: 9pt; width: 605px; height: 111px;">
  61.                             <tr>
  62.                                 <td colspan="4" style="height: 34px">
  63.                                 </td>
  64.                             </tr>
  65.                             <tr>
  66.                                 <td colspan="4" style="height: 34px">
  67.                                 </td>
  68.                             </tr>
  69.                             <tr>
  70.                                 <td colspan="4">
  71.                                     <span style="font-size: 16pt"></span></td>
  72.                             </tr>
  73.                             <tr>
  74.                                 <td style="width: 100px; height: 23px">
  75.                                     <span style="font-size: 9pt">项目名称</span></td>
  76.                                 <td style="width: 202px; height: 23px; text-align: left">
  77.                                     <asp:TextBox ID="txtItemName" runat="server" Font-Size="9pt"></asp:TextBox>
  78.                                     <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtItemName"
  79.                                         ErrorMessage="项目名称不能为空">*</asp:RequiredFieldValidator></td>
  80.                                 <td style="width: 100px; height: 23px">
  81.                                     <span style="font-size: 9pt">客户名称</span></td>
  82.                                 <td style="width: 201px; height: 23px; text-align: left">
  83.                                     <asp:TextBox ID="txtClientName" runat="server" Font-Size="9pt"></asp:TextBox>
  84.                                     <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ControlToValidate="txtClientName"
  85.                                         ErrorMessage="交流主题不能为空">*</asp:RequiredFieldValidator></td>
  86.                             </tr>
  87.                             <tr>
  88.                                 <td style="height: 17px">
  89.                                     开始时间</td>
  90.                                 <td style="width: 202px; height: 17px; text-align: left">
  91.                                     <asp:TextBox ID="txtStartTime" runat="server" Font-Size="9pt"></asp:TextBox>
  92.                                     <asp:CompareValidator ID="CompareValidator1" runat="server" ControlToValidate="txtStartTime"
  93.                                         ErrorMessage="格式:yyyy-mm-dd" Operator="DataTypeCheck" Type="Date" Width="3px">*</asp:CompareValidator></td>
  94.                                 <td style="width: 100px; height: 17px">
  95.                                     结束时间</td>
  96.                                 <td style="width: 201px; height: 17px; text-align: left">
  97.                                     <asp:TextBox ID="txtEndTime" runat="server" Font-Size="9pt"></asp:TextBox>
  98.                                     <asp:CompareValidator ID="CompareValidator2" runat="server" ControlToValidate="txtEndTime"
  99.                                         ErrorMessage="格式:yyyy-mm-dd" Operator="DataTypeCheck" Type="Date" Width="3px">*</asp:CompareValidator></td>
  100.                             </tr>
  101.                             <tr>
  102.                                 <td style="height: 19px">
  103.                                     相关部门</td>
  104.                                 <td style="width: 202px; height: 19px; text-align: left">
  105.                                     <asp:DropDownList ID="dropDepAbout" runat="server" Font-Size="9pt" Width="132px">
  106.                                     </asp:DropDownList></td>
  107.                                 <td style="width: 100px; height: 19px">
  108.                                     项目负责人</td>
  109.                                 <td style="width: 201px; height: 19px; text-align: left">
  110.                                     <asp:DropDownList ID="dropDepEmployee" runat="server" Font-Size="9pt" Width="132px">
  111.                                     </asp:DropDownList></td>
  112.                             </tr>
  113.                             <tr>
  114.                                 <td style="height: 19px">
  115.                                     订单编号</td>
  116.                                 <td style="width: 202px; height: 19px; text-align: left">
  117.                                     <asp:TextBox ID="txtOrderCode" runat="server" Font-Size="9pt" ForeColor="Red"></asp:TextBox>
  118.                                     <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtOrderCode"
  119.                                         ErrorMessage="产品编号不能为空">*</asp:RequiredFieldValidator></td>
  120.                                 <td style="width: 100px; height: 19px">
  121.                                     项目金额</td>
  122.                                 <td style="width: 201px; height: 19px; text-align: left">
  123.                                     <asp:TextBox ID="txtItemMoney" runat="server" Font-Size="9pt"></asp:TextBox>元<asp:RequiredFieldValidator
  124.                                         ID="RequiredFieldValidator4" runat="server" ControlToValidate="txtItemMoney"
  125.                                         ErrorMessage="项目金额不能为空">*</asp:RequiredFieldValidator></td>
  126.                             </tr>
  127.                             <tr>
  128.                                 <td style="height: 19px">
  129.                                     客户电话</td>
  130.                                 <td style="width: 202px; height: 19px; text-align: left">
  131.                                     <asp:TextBox ID="txtPhoneAbout" runat="server" Font-Size="9pt"></asp:TextBox></td>
  132.                                 <td style="width: 100px; height: 19px">
  133.                                     客户地址</td>
  134.                                 <td style="width: 201px; height: 19px; text-align: left">
  135.                                     <asp:TextBox ID="txtClientAddress" runat="server" Font-Size="9pt"></asp:TextBox></td>
  136.                             </tr>
  137.                             <tr>
  138.                                 <td style="height: 19px">
  139.                                     客户邮编</td>
  140.                                 <td style="width: 202px; height: 19px; text-align: left">
  141.                                     <asp:TextBox ID="txtPostCode" runat="server" Font-Size="9pt"></asp:TextBox></td>
  142.                                 <td style="width: 100px; height: 19px">
  143.                                     客户邮箱</td>
  144.                                 <td style="width: 201px; height: 19px; text-align: left">
  145.                                     <asp:TextBox ID="txtClientEmail" runat="server" Font-Size="9pt"></asp:TextBox></td>
  146.                             </tr>
  147.                             <tr>
  148.                                 <td style="height: 19px">
  149.                                     具体内容</td>
  150.                                 <td colspan="3" rowspan="2" style="text-align: left">
  151.                                     <asp:TextBox ID="txtComContent" runat="server" Font-Size="9pt" Height="145px" TextMode="MultiLine"
  152.                                         Width="431px"></asp:TextBox></td>
  153.                             </tr>
  154.                             <tr>
  155.                                 <td style="height: 110px">
  156.                                 </td>
  157.                             </tr>
  158.                             <tr>
  159.                                 <td colspan="4" rowspan="1" style="vertical-align: top; height: 73px; text-align: center">
  160.                                     <asp:Button ID="btnOK" runat="server" Font-Size="9pt" OnClick="btnOK_Click" Text="提交" />
  161.                                     <input id="Reset1" style="font-size: 9pt" type="reset" value="重置" />
  162.                                     <asp:Button ID="btnBack" runat="server" Font-Size="9pt" OnClick="btnBack_Click" Text="返回" CausesValidation="False" /><br />
  163.                                     <asp:ValidationSummary ID="ValidationSummary1" runat="server" ShowMessageBox="True"
  164.                                         ShowSummary="False" />
  165.                                 </td>
  166.                             </tr>
  167.                         </table>
  168.                     </asp:Panel>
  169.                 </td>
  170.             </tr>
  171.             <tr>
  172.             </tr>
  173.             <tr>
  174.             </tr>
  175.         </table>
  176.     
  177.     </div>
  178.     </form>
  179. </body>
  180. </html>