clientcontrol.ascx
来自「这是一个订单管理系统」· ASCX 代码 · 共 35 行
ASCX
35 行
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="ClientControl.ascx.vb" Inherits="ClientControl" %>
<table id="tableClient" class="Style_Table" >
<tr>
<td style="width: 121px; color:#284E98;">
<asp:Label ID="Label1" runat="server" Text="客户编号" ></asp:Label></td>
<td colspan="2">
<asp:TextBox ID="TxtClientId" runat="server" Width="200px"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 121px; color:#284E98;">
<asp:Label ID="Label2" runat="server" Text="客户名称"></asp:Label></td>
<td colspan="2">
<asp:TextBox ID="TxtClientName" runat="server" Width="200px"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 121px; color:#284E98;">
<asp:Label ID="Label3" runat="server" Text="类型"></asp:Label></td>
<td colspan="2">
<asp:DropDownList ID="dplType" runat="server" Width="200px">
<asp:ListItem Value="1">国有</asp:ListItem>
<asp:ListItem Value="2">中外合资</asp:ListItem>
<asp:ListItem Value="3">外资</asp:ListItem>
<asp:ListItem Value="4">私营</asp:ListItem>
<asp:ListItem Value="5">其他</asp:ListItem>
</asp:DropDownList></td>
</tr>
<tr>
<td style="width: 121px">
</td>
<td style="width: 100px">
<asp:Button ID="btnAct" runat="server" Height="24px" Text="OK" Width="60px" /></td>
<td style="width: 100px">
<asp:Button ID="btnCancel" runat="server" Height="24px" Text="Cancel" Width="60px" /></td>
</tr>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?