locationselector.ascx

来自「一个网上购物系统」· ASCX 代码 · 共 20 行

ASCX
20
字号
<%@ Control Language="c#" AutoEventWireup="false" Codefile="LocationSelector.ascx.cs" Inherits="LocationSelector" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<TR>
	<TD width="148" class="checkoutlabel">地区</TD>
	<TD>
		<asp:TextBox id="txtState" runat="server"></asp:TextBox>
		<asp:DropDownList id="ddlState" runat="server">
			<asp:ListItem value="DL">大连</asp:ListItem>
			<asp:ListItem value="BJ">北京</asp:ListItem>
		</asp:DropDownList>
		<asp:RequiredFieldValidator id="valState" runat="server" EnableClientScript="False" ControlToValidate="ddlState"
			ErrorMessage="Required" Display="Dynamic"></asp:RequiredFieldValidator></TD>
</TR>
<TR>
	<TD width="148" class="checkoutlabel">国家</TD>
	<TD>
		<asp:DropDownList id="ddlCountry" runat="server" AutoPostBack="True">
			<asp:ListItem Value="CH">中国</asp:ListItem>
		</asp:DropDownList></TD>
</TR>

⌨️ 快捷键说明

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