📄 editcust.aspx
字号:
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="EditCust.aspx.cs" Inherits="client_EditCust" Title="客户信息" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div class="page_title">客户信息管理 > 客户信息</div>
<div class="button_bar">
<button class="common_button">帮助</button>
<asp:Button runat="server" Text="联系人" ID="ren" class="common_button" OnClick="ren_Click"/>
<button class="common_button">交往记录</button>
<button class="common_button">历史订单</button>
<asp:Button runat="server" ID="exit" Text="返回" class="common_button" OnClick="exit_Click"/>
<asp:Button runat="server" ID="save" class="common_button" Text="保存" OnClick="save_Click"/>
</div>
<table class="query_form_table">
<tr>
<th>客户编号</th>
<td><asp:Label runat="server" ID="num"></asp:Label></td>
<th>名称</th>
<td><asp:TextBox runat="server" ID="name"></asp:TextBox><span class="red_star">*</span></td>
</tr>
<tr>
<th>地区</th>
<td>
<asp:DropDownList ID="ddl1" runat="server">
</asp:DropDownList>
<span class="red_star">*</span></td>
<th>客户经理</th>
<td>
<asp:DropDownList ID="ddl2" runat="server">
</asp:DropDownList>
<span class="red_star">*</span>
</td>
</tr>
<tr>
<th>客户等级</th>
<td>
<asp:DropDownList ID="ddl3" runat="server">
</asp:DropDownList>
<span class="red_star">*</span>
</td>
<th> </th>
<td> </td>
</tr>
<tr>
<th>客户满意度</th>
<td>
<asp:DropDownList ID="ddl4" runat="server">
<asp:ListItem>未指定</asp:ListItem>
<asp:ListItem Value="5">☆☆☆☆☆</asp:ListItem>
<asp:ListItem Value="4">☆☆☆☆</asp:ListItem>
<asp:ListItem Value="3">☆☆☆</asp:ListItem>
<asp:ListItem Value="2">☆☆</asp:ListItem>
<asp:ListItem Value="1">☆</asp:ListItem>
</asp:DropDownList>
<span class="red_star">*</span>
</td>
<th>客户信用度</th>
<td>
<asp:DropDownList ID="ddl5" runat="server">
<asp:ListItem>未指定</asp:ListItem>
<asp:ListItem Value="5">☆☆☆☆☆</asp:ListItem>
<asp:ListItem Value="4">☆☆☆☆</asp:ListItem>
<asp:ListItem Value="3">☆☆☆</asp:ListItem>
<asp:ListItem Value="2">☆☆</asp:ListItem>
<asp:ListItem Value="1">☆</asp:ListItem>
</asp:DropDownList>
<span class="red_star">*</span>
</td>
</tr>
</table>
<br />
<table class="query_form_table" id="table1">
<tr>
<th>地址</th>
<td><asp:TextBox runat="server" ID="address"></asp:TextBox><span class="red_star">*</span>
</td>
<th>邮政编码</th>
<td><asp:TextBox runat="server" ID="zip" name="T1" size="20" ></asp:TextBox><span class="red_star">*</span></td>
</tr>
<tr>
<th>电话</th>
<td>
<asp:TextBox runat="server" ID="tel" name="T4" size="20"></asp:TextBox><span class="red_star">*</span></td>
<th>传真</th>
<td>
<asp:TextBox runat="server" ID="fax" name="T5" size="20"></asp:TextBox><span class="red_star">*</span>
</td>
</tr>
<tr>
<th>网址</th>
<td>
<asp:TextBox runat="server" ID="web" name="T6" size="20"></asp:TextBox><span class="red_star">*</span>
</td>
<th> </th>
<td> </td>
</tr>
</table>
<br />
<table class="query_form_table" id="table2">
<tr>
<th>营业执照注册号</th>
<td><asp:TextBox runat="server" ID="zch" name="T13" size="20"></asp:TextBox></td>
<th>法人</th>
<td><asp:TextBox runat="server" ID="fr" name="T3" size="20"></asp:TextBox><span class="red_star">*</span>
</td>
</tr>
<tr>
<th>注册资金(万元)</th>
<td>
<asp:TextBox runat="server" ID="zj" name="T7" size="20"></asp:TextBox> </td>
<th>年营业额</th>
<td>
<asp:TextBox runat="server" ID="ying" name="T8" size="20"></asp:TextBox>
</td>
</tr>
<tr>
<th>开户银行</th>
<td>
<asp:TextBox runat="server" ID="bank" name="T9" size="20"></asp:TextBox><span class="red_star">*</span>
</td>
<th>银行帐号</th>
<td><asp:TextBox runat="server" ID="zhang" name="T10" size="20"></asp:TextBox><span class="red_star">*</span></td>
</tr>
<tr>
<th>地税登记号</th>
<td>
<asp:TextBox runat="server" ID="sh" name="T11" size="20"></asp:TextBox></td>
<th>国税登记号</th>
<td><asp:TextBox runat="server" ID="dj" name="T12" size="20"></asp:TextBox></td>
</tr>
</table>
<p> </p>
</asp:Content>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -