locationdropdown.ascx

来自「classfinalcs.rar .net 压缩包解压时不能有密码。」· ASCX 代码 · 共 14 行

ASCX
14
字号
<%@ Control Language="C#" CodeFile="LocationDropDown.ascx.cs" Inherits="LocationDropDown_ascx" %>
<asp:DropDownList ID="LocationList" runat="server" DataSourceID="LocationsDataSource"
	DataTextField="Name" DataValueField="Name" OnDataBound="LocationList_DataBound"
	CssClass="fixed" OnSelectedIndexChanged="LocationList_SelectedIndexChanged" AutoPostBack="True">
</asp:DropDownList>
<asp:PlaceHolder ID="OtherLocationPanel" runat="server">
	<asp:Label ID="OtherLabel" runat="server" Text="Other:"></asp:Label>
	&nbsp;
	<asp:TextBox ID="OtherLocationTextBox" runat="server"></asp:TextBox>
</asp:PlaceHolder>
<asp:ObjectDataSource ID="LocationsDataSource" runat="server" SelectMethod="GetAllLocations"
	TypeName="AspNet.StarterKits.Classifieds.Web.LocationCache" OnSelected="LocationsDataSource_Selected">
</asp:ObjectDataSource>

⌨️ 快捷键说明

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