📄 newproduct.ascx
字号:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="NewProduct.ascx.cs" Inherits="UserControl_NewProduct" %>
<style type="text/css">
.style1
{
width: 123px;
}
.style2
{
width: 188px;
}
</style>
<div>
<table style="width: 100%;">
<tr>
<td align="right" >
商品类别:
</td>
<td align="left" >
<asp:DropDownList ID="drpPrdCategory" runat="server" Height="19px"
Width="104px" onselectedindexchanged="drpPrdCategory_SelectedIndexChanged"
AutoPostBack="True">
<asp:ListItem>-选择类别-</asp:ListItem>
</asp:DropDownList>
</td>
<td></td>
</tr>
<tr>
<td align="right" >
商品名称:
</td>
<td align="left" >
<asp:DropDownList ID="drpPrdName" runat="server" Height="19px" Width="104px">
<asp:ListItem>-选择商品-</asp:ListItem>
</asp:DropDownList>
</td>
<td> </td>
</tr>
<tr>
<td align="right" >商品数量:</td>
<td align="left">
<asp:TextBox ID="txtCount" runat="server" Height="19px" Width="104px"></asp:TextBox></td>
<td><asp:Button ID="btnAdd" runat="server" Text="添加商品" Width="62px"
onclick="btnAdd_Click" />
</td>
</tr>
<tr>
<td colspan="3" align="left" >
<asp:Table ID="tblProductList" runat="server"> </asp:Table>
</td>
</tr>
<tr>
<td colspan="3" align="center">
<asp:Label ID="lblRetotal" runat="server" Text="" ></asp:Label>
</td>
</tr>
</table>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -