List 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.
以静态显示或交互式列表形式呈现项列表。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。
public ref class List : System::Web::UI::MobileControls::PagedControl, System::Web::UI::INamingContainer, System::Web::UI::IPostBackEventHandler, System::Web::UI::MobileControls::ITemplateable
[System.Web.UI.MobileControls.DesignerAdapter(typeof(System.Web.UI.Design.MobileControls.Adapters.DesignerListAdapter))]
public class List : System.Web.UI.MobileControls.PagedControl, System.Web.UI.INamingContainer, System.Web.UI.IPostBackEventHandler, System.Web.UI.MobileControls.ITemplateable
[System.Web.UI.MobileControls.DesignerAdapter(typeof(System.Web.UI.Design.MobileControls.Adapters.DesignerListAdapter))]
[System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
public class List : System.Web.UI.MobileControls.PagedControl, System.Web.UI.INamingContainer, System.Web.UI.IPostBackEventHandler, System.Web.UI.MobileControls.ITemplateable
[<System.Web.UI.MobileControls.DesignerAdapter(typeof(System.Web.UI.Design.MobileControls.Adapters.DesignerListAdapter))>]
type List = class
inherit PagedControl
interface INamingContainer
interface ITemplateable
interface IPostBackEventHandler
[<System.Web.UI.MobileControls.DesignerAdapter(typeof(System.Web.UI.Design.MobileControls.Adapters.DesignerListAdapter))>]
[<System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")>]
type List = class
inherit PagedControl
interface INamingContainer
interface ITemplateable
interface IPostBackEventHandler
Public Class List
Inherits PagedControl
Implements INamingContainer, IPostBackEventHandler, ITemplateable
- 继承
- 属性
- 实现
示例
下面的代码示例演示数组如何绑定和填充 List。 请注意,可以编程方式设置 DataTextField 对象的 和 DataValueField 属性 List 。
<%@ Page Language="C#"
Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
<script runat="server">
// Persist across multiple postbacks.
private static int doneCount, schedCount, pendCount;
// <Snippet3>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
// Set the DataMembers of the List
List1.DataValueField = "Status";
List1.DataTextField = "TaskName";
// Create an ArrayList of task data
ArrayList arr = new ArrayList();
arr.Add(new Task("Define transactions", "scheduled"));
arr.Add(new Task("Verify transactions", "scheduled"));
arr.Add(new Task("Check balance sheet", "scheduled"));
arr.Add(new Task("Compile balance sheet", "scheduled"));
arr.Add(new Task("Prepare report", "scheduled"));
arr.Add(new Task("Send report", "scheduled"));
// Bind the array to the list
List1.DataSource = arr;
List1.DataBind();
const string spec = "Start: {0} tasks are done, {1} " +
"tasks are scheduled, and {2} tasks are pending.";
Label2.Text = String.Format(spec, doneCount, +
schedCount, pendCount);
List1.Decoration = ListDecoration.Bulleted;
}
}
// </Snippet3>
// <Snippet2>
private void Status_ItemCommand(object sender,
ListCommandEventArgs e)
{
const string spec = "You now have {0} " +
"tasks done, {1} tasks scheduled, and " +
"{2} tasks pending.";
// Move selection to next status toward 'done'
switch (e.ListItem.Value)
{
case "scheduled":
schedCount -= 1;
pendCount += 1;
e.ListItem.Value = "pending";
break;
case "pending":
pendCount -= 1;
doneCount += 1;
e.ListItem.Value = "done";
break;
}
// Show the status of the current task
Label1.Text = e.ListItem.Text + " is " +
e.ListItem.Value;
// Show current selection counts
Label2.Text = String.Format(spec, doneCount,
schedCount, pendCount);
}
// </Snippet2>
// <Snippet4>
private void Status_DataBinding(object sender,
ListDataBindEventArgs e)
{
// Increment initial counts
switch (e.ListItem.Value)
{
case "done":
doneCount += 1;
break;
case "scheduled":
schedCount += 1;
break;
case "pending":
pendCount += 1;
break;
}
}
// </Snippet4>
// Custom class for the ArrayList items
private class Task
{
private string _TaskName;
private string _Status;
public Task(string taskName, string status)
{
_TaskName = taskName;
_Status = status;
}
public string TaskName
{
get { return _TaskName; }
}
public string Status
{
get { return _Status; }
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:form id="form1" runat="server">
<mobile:Label ID="Label3" Runat="server">
Click a task to change its status from
scheduled to pending or from pending to done:
</mobile:Label>
<mobile:List runat="server" id="List1"
OnItemCommand="Status_ItemCommand"
OnItemDataBind="Status_DataBinding" />
<mobile:Label runat="server" id="Label1"
ForeColor="green" Font-Italic="true" />
<mobile:Label id="Label2" runat="server" />
</mobile:form>
</body>
</html>
<%@ Page Language="VB"
Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
<script runat="server">
' Persist across multiple postbacks.
Private Shared doneCount, schedCount, pendCount As Integer
' <Snippet3>
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
If Not IsPostBack Then
' Set the DataMembers of the List
List1.DataValueField = "Status"
List1.DataTextField = "TaskName"
' Create an ArrayList of task data
Dim arr As ArrayList = New ArrayList()
arr.Add(New Task("Define transactions", "scheduled"))
arr.Add(New Task("Verify transactions", "scheduled"))
arr.Add(New Task("Check balance sheet", "scheduled"))
arr.Add(New Task("Compile balance sheet", "scheduled"))
arr.Add(New Task("Prepare report", "scheduled"))
arr.Add(New Task("Send report", "scheduled"))
' Bind the array to the list
List1.DataSource = arr
List1.DataBind()
Const spec As String = "Start: {0} tasks are done, {1} " & _
"tasks are scheduled, and {2} tasks are pending."
Label2.Text = String.Format(spec, doneCount, _
schedCount, pendCount)
List1.Decoration = ListDecoration.Bulleted
End If
End Sub
' </Snippet3>
' <Snippet2>
Private Sub Status_ItemCommand(ByVal sender As Object, _
ByVal e As ListCommandEventArgs)
Const spec As String = "You now have {0} tasks done, {1} " & _
"tasks scheduled, and {2} tasks pending."
' Move selection to next status toward 'done'
Select Case e.ListItem.Value
Case "scheduled"
schedCount -= 1
pendCount += 1
e.ListItem.Value = "pending"
Case "pending"
pendCount -= 1
doneCount += 1
e.ListItem.Value = "done"
End Select
' Show the status of the current task
Label1.Text = e.ListItem.Text & " is " & _
e.ListItem.Value
' Show current selection counts
Label2.Text = String.Format(spec, doneCount, _
schedCount, pendCount)
End Sub
' </Snippet2>
' <Snippet4>
Private Sub Status_DataBinding(ByVal sender As Object, _
ByVal e As ListDataBindEventArgs)
' Increment initial counts
Select Case e.ListItem.Value
Case "done"
doneCount += 1
Case "scheduled"
schedCount += 1
Case "pending"
pendCount += 1
End Select
End Sub
' </Snippet4>
' Custom class for the ArrayList items
Private Class Task
Private _TaskName, _Status As String
Public Sub New(ByVal TaskName As String, _
ByVal Status As String)
_TaskName = TaskName
_Status = Status
End Sub
Public ReadOnly Property TaskName() As String
Get
Return _TaskName
End Get
End Property
Public ReadOnly Property Status() As String
Get
Return _Status
End Get
End Property
End Class
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:form id="form1" runat="server">
<mobile:Label ID="Label3" Runat="server">
Click a task to change its status from
scheduled to pending or from pending to done:
</mobile:Label>
<mobile:List runat="server" id="List1"
OnItemCommand="Status_ItemCommand"
OnItemDataBind="Status_DataBinding" />
<mobile:Label runat="server" id="Label1"
ForeColor="green" Font-Italic="true" />
<mobile:Label id="Label2" runat="server" />
</mobile:form>
</body>
</html>
注解
此控件支持使用设备模板集和内部分页进行模板化呈现。 有关详细信息,请参阅 设备筛选概述 和 分页。
构造函数
List() |
已过时.
初始化 List 类的新实例。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
属性
Adapter |
已过时.
返回控件的设备特定适配器。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
Alignment |
已过时.
获取或设置样式的指定对齐方式。 默认值是 NotSet。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
AppRelativeTemplateSourceDirectory |
已过时.
获取或设置包含该控件的 Page 或 UserControl 对象的应用程序相对虚拟目录。 (继承自 Control) |
BackColor |
已过时.
获取或设置样式的指定背景色。 默认值是 Empty。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
BindingContainer |
已过时.
获取包含该控件的数据绑定的控件。 (继承自 Control) |
BreakAfter |
已过时.
获取或设置一个属性,该属性确定是否在控件后呈现附加尾随换行符。 此换行符使后续内容从下一行开始。 默认值为 |
ChildControlsCreated |
已过时.
获取一个值,该值指示是否已创建服务器控件的子控件。 (继承自 Control) |
ClientID |
已过时.
获取由 ASP.NET 生成的 HTML 标记的控件 ID。 (继承自 Control) |
ClientIDMode |
已过时.
获取或设置用于生成 ClientID 属性值的算法。 (继承自 Control) |
ClientIDSeparator |
已过时.
获取一个字符值,该值表示 ClientID 属性中使用的分隔符字符。 (继承自 Control) |
Context |
已过时.
为当前 Web 请求获取与服务器控件关联的 HttpContext 对象。 (继承自 Control) |
Controls |
已过时.
获取 ControlCollection 对象,该对象表示 UI 层次结构中的指定服务器控件的子控件。 (继承自 Control) |
CustomAttributes |
已过时.
返回该控件的自定义属性集。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
DataItemContainer |
已过时.
如果命名容器实现 IDataItemContainer,则获取对命名容器的引用。 (继承自 Control) |
DataKeysContainer |
已过时.
如果命名容器实现 IDataKeysControl,则获取对命名容器的引用。 (继承自 Control) |
DataMember |
已过时.
获取或设置当数据绑定到列表数据源时要提取的数据成员的名称。 默认值为空字符串 ("")。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
DataSource |
已过时.
获取或设置要绑定的列表的数据源。 默认值是 |
DataTextField |
已过时.
指定在绑定项的 Text 属性时要使用数据绑定项的哪个属性。 默认值为 |
DataValueField |
已过时.
指定在绑定项的 Value 属性时要使用数据绑定项的哪个属性。 默认值为 |
Decoration |
已过时.
获取或设置用于项的修饰的类型。 默认值是 |
DesignMode |
已过时.
获取一个值,该值指示是否正在使用设计图面上的一个控件。 (继承自 Control) |
DeviceSpecific |
已过时.
获取或设置与控件关联的 DeviceSpecific/Choice 构造。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
EnableTheming |
已过时.
获取一个值,该值指示是否将主题应用到该控件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
EnableViewState |
已过时.
获取或设置一个值,该值指示服务器控件是否向发出请求的客户端保持自己的视图状态以及它所包含的任何子控件的视图状态。 (继承自 Control) |
Events |
已过时.
获取控件的事件处理程序委托列表。 此属性为只读。 (继承自 Control) |
FirstPage |
已过时.
返回该窗体的第一页,此控件在该页上显示。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
FirstVisibleItemIndex |
已过时.
获取当前窗体页上的第一个可见项。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
Font |
已过时.
获取包含有关该控件字体信息的 FontInfo 对象。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
ForeColor |
已过时.
获取或设置样式的指定前景色。 此属性通常用于设置文本颜色。 默认值是 Empty。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
Form |
已过时.
提供对包含窗体的访问。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
HasChildViewState |
已过时.
获取一个值,该值指示当前服务器控件的子控件是否具有任何已保存的视图状态设置。 (继承自 Control) |
HasItemCommandHandler |
已过时.
获取一个值,该值指示 List 控件是否具有为相应的 ItemCommand 事件注册的事件处理程序。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
ID |
已过时.
获取或设置分配给服务器控件的编程标识符。 (继承自 Control) |
IdSeparator |
已过时.
获取用于分隔控件标识符的字符。 (继承自 Control) |
InnerText |
已过时.
返回该控件内部的文本。 该内部文本可能是子控件中文本的组合。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
InternalItemCount |
已过时.
获取控件中的项数。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
IsChildControlStateCleared |
已过时.
获取一个值,该值指示该控件中包含的控件是否具有控件状态。 (继承自 Control) |
IsTemplated |
已过时.
获取一个值,该值指示 MobileControl 对象是否有活动的模板集。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
IsTrackingViewState |
已过时.
获取一个值,用于指示服务器控件是否会将更改保存到其视图状态中。 (继承自 Control) |
IsViewStateEnabled |
已过时.
获取一个值,该值指示是否为该控件启用了视图状态。 (继承自 Control) |
ItemCount |
已过时.
获取或设置控件中的项数。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
Items |
已过时.
返回 MobileListItemCollection 列表中的项的集合。 默认值为空集合。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
ItemsAsLinks |
已过时.
获取一个值,该值指示是否将列表中的项作为超链接来处理。 默认值是 |
ItemsPerPage |
已过时.
获取或设置分页后每页所显示的项数。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
ItemWeight |
已过时.
获取控件中单个项的近似权重。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
LastPage |
已过时.
返回该窗体的最后一页,指定控件在该页上显示。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
LoadViewStateByID |
已过时.
获取一个值,该值指示控件是否通过 ID 而不是索引参与加载其视图状态。 (继承自 Control) |
MobilePage |
已过时.
返回包含页。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
NamingContainer |
已过时.
获取对服务器控件的命名容器的引用,此引用创建唯一的命名空间,以区分具有相同 ID 属性值的服务器控件。 (继承自 Control) |
Page |
已过时.
获取对包含服务器控件的 Page 实例的引用。 (继承自 Control) |
PaginateChildren |
已过时.
获取一个值,指示是否必须对控件的子控件进行分页。 用于窗体分页。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
Parent |
已过时.
获取对页 UI 层次结构中服务器控件的父控件的引用。 (继承自 Control) |
RenderingCompatibility |
已过时.
获取一个值,该值指定呈现的 HTML 将与之兼容的 ASP.NET 版本。 (继承自 Control) |
Site |
已过时.
获取容器信息,该容器在呈现于设计图面上时承载当前控件。 (继承自 Control) |
SkinID |
已过时.
获取应用到控件的外观的 ID。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
Style |
已过时.
获取控件的样式。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
StyleReference |
已过时.
获取或设置控件的样式属性的引用。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
TemplateControl |
已过时.
获取或设置对包含该控件的模板的引用。 (继承自 Control) |
TemplateSourceDirectory |
已过时.
获取包含当前服务器控件的 Page 或 UserControl 的虚拟目录。 (继承自 Control) |
UniqueID |
已过时.
获取服务器控件的唯一的、以分层形式限定的标识符。 (继承自 Control) |
ValidateRequestMode |
已过时.
获取或设置指示控件是否检查来自浏览器的客户端输入是否具有潜在危险值的值。 (继承自 Control) |
ViewState |
已过时.
获取状态信息的字典,这些信息使您可以在同一页的多个请求间保存和还原服务器控件的视图状态。 (继承自 Control) |
ViewStateIgnoresCase |
已过时.
获取一个值,该值指示 StateBag 对象是否不区分大小写。 (继承自 Control) |
ViewStateMode |
已过时.
获取或设置此控件的视图状态模式。 (继承自 Control) |
Visible |
已过时.
获取或设置一个值,该值指示服务器控件是否作为 UI 呈现在页上。 (继承自 Control) |
VisibleItemCount |
已过时.
获取在当前 ASP.NET 移动 Web 窗体页上的可见项数。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
VisibleWeight |
已过时.
获取控件的近似权重(以字符为单位)。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
Wrapping |
已过时.
获取或设置样式的指定包装模式。 默认值是 NotSet。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
方法
AddedControl(Control, Int32) |
已过时.
在子控件添加到 Control 对象的 Controls 集合后调用。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
AddLinkedForms(IList) |
已过时.
向所提供的列表添加一组包含指定控件链接的窗体。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
AddParsedSubObject(Object) |
已过时.
通知服务器控件,分析了一个元素,并将该元素添加到服务器控件的 ControlCollection 对象中。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
ApplyStyleSheetSkin(Page) |
已过时.
将页样式表中定义的样式属性应用到控件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
BeginRenderTracing(TextWriter, Object) |
已过时.
开始输出数据的设计时追踪。 (继承自 Control) |
BuildProfileTree(String, Boolean) |
已过时.
收集有关服务器控件的信息并将该信息发送到 Trace 属性,在启用页的跟踪功能时将显示该属性。 (继承自 Control) |
ClearCachedClientID() |
已过时.
将缓存的 ClientID 值设置为 |
ClearChildControlState() |
已过时.
删除服务器控件的子控件的控件状态信息。 (继承自 Control) |
ClearChildState() |
已过时.
删除服务器控件的所有子控件的视图状态和控件状态信息。 (继承自 Control) |
ClearChildViewState() |
已过时.
删除服务器控件的所有子控件的视图状态信息。 (继承自 Control) |
ClearEffectiveClientIDMode() |
已过时.
将当前控件实例和任何子控件的 ClientIDMode 属性设置为 Inherit。 (继承自 Control) |
CreateChildControls() |
已过时.
使用视图状态创建子控件。 此方法支持 .NET Framework 基础结构,但不适合直接在代码中使用。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
CreateControlCollection() |
已过时.
创建一个新 ControlCollection 对象来保存服务器控件的子控件(包括文本控件和服务器控件)。 (继承自 Control) |
CreateDefaultTemplatedUI(Boolean) |
已过时.
由设备适配器调用,以创建控件的默认模板化用户界面 (UI)。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
CreateItems(IEnumerable) |
已过时.
使用指定的 |
CreateStyle() |
已过时.
构造并返回与控件关联的样式对象。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
CreateTemplatedUI(Boolean) |
已过时.
由基类调用,以创建模板化用户界面。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
DataBind() |
已过时.
将数据源绑定到调用的服务器控件及其所有子控件。 (继承自 Control) |
DataBind(Boolean) |
已过时.
将数据源绑定到调用的服务器控件及其所有子控件,同时可以选择引发 DataBinding 事件。 (继承自 Control) |
DataBindChildren() |
已过时.
将数据源绑定到服务器控件的子控件。 (继承自 Control) |
Dispose() |
已过时.
使服务器控件得以在从内存中释放之前执行最后的清理操作。 (继承自 Control) |
EndRenderTracing(TextWriter, Object) |
已过时.
结束输出数据的设计时追踪。 (继承自 Control) |
EnsureChildControls() |
已过时.
确定服务器控件是否包含子控件。 如果不包含,则创建子控件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
EnsureID() |
已过时.
为尚未分配标识符的控件创建标识符。 (继承自 Control) |
EnsureTemplatedUI() |
已过时.
使用此方法可以确保已对模板进行了实例化,以允许对模板的实例化内容进行编程访问。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
Equals(Object) |
已过时.
确定指定对象是否等于当前对象。 (继承自 Object) |
FindControl(String) |
已过时.
在当前的命名容器中搜索带指定 |
FindControl(String, Int32) |
已过时.
使用指定的 |
Focus() |
已过时.
为控件设置输入焦点。 (继承自 Control) |
GetAttribute(String) |
已过时.
检索控件的指定属性特性。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
GetDesignModeState() |
已过时.
获取控件的设计时数据。 (继承自 Control) |
GetHashCode() |
已过时.
作为默认哈希函数。 (继承自 Object) |
GetRouteUrl(Object) |
已过时.
获取与一组路由参数对应的 URL。 (继承自 Control) |
GetRouteUrl(RouteValueDictionary) |
已过时.
获取与一组路由参数对应的 URL。 (继承自 Control) |
GetRouteUrl(String, Object) |
已过时.
获取与一组路由参数以及某个路由名称对应的 URL。 (继承自 Control) |
GetRouteUrl(String, RouteValueDictionary) |
已过时.
获取与一组路由参数以及某个路由名称对应的 URL。 (继承自 Control) |
GetTemplate(String) |
已过时.
返回具有指定名称的模板。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
GetType() |
已过时.
获取当前实例的 Type。 (继承自 Object) |
GetUniqueIDRelativeTo(Control) |
已过时.
返回指定控件的 UniqueID 属性的前缀部分。 (继承自 Control) |
HasControls() |
已过时.
确定服务器控件是否包含任何子控件。 (继承自 Control) |
HasEvents() |
已过时.
返回一个值,该值指示是否为控件或任何子控件注册事件。 (继承自 Control) |
IsFormSubmitControl() |
已过时.
如果该控件提交窗体,则返回 |
IsLiteralContent() |
已过时.
确定服务器控件是否只包含文字内容。 (继承自 Control) |
IsVisibleOnPage(Int32) |
已过时.
返回一个值,该值指示控件在窗体的给定页上是否可见。 用于窗体分页。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
LoadControlState(Object) |
已过时.
从 SaveControlState() 方法保存的上一个页请求还原控件状态信息。 (继承自 Control) |
LoadPrivateViewState(Object) |
已过时.
加载私有视图状态。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
LoadViewState(Object) |
已过时.
从用 SaveViewState() 方法保存的上一个页面请求还原视图状态信息。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
MapPathSecure(String) |
已过时.
检索虚拟路径(绝对的或相对的)映射到的物理路径。 (继承自 Control) |
MemberwiseClone() |
已过时.
创建当前 Object 的浅表副本。 (继承自 Object) |
OnBubbleEvent(Object, EventArgs) |
已过时.
确定服务器控件的事件是否沿页的 UI 服务器控件层次结构向上传递。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
OnDataBinding(EventArgs) |
已过时.
引发 DataBinding 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
OnInit(EventArgs) |
已过时.
引发 Init 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OnItemCommand(ListCommandEventArgs) |
已过时.
通过用户交互而使列表项生成了事件时调用。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
OnItemDataBind(ListDataBindEventArgs) |
已过时.
对某个列表项进行数据绑定时调用。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
OnLoad(EventArgs) |
已过时.
引发 Unload 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OnLoadItems(LoadItemsEventArgs) |
已过时.
在对控件进行了自定义分页,并且需要更多数据时调用。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
OnPageChange(Int32, Int32) |
已过时.
对控件分页。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
OnPreRender(EventArgs) |
已过时.
引发 PreRender 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
OnRender(HtmlTextWriter) |
已过时.
将控件呈现到指定的输出流。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OnUnload(EventArgs) |
已过时.
引发 Unload 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OpenFile(String) |
已过时.
获取用于读取文件的 Stream。 (继承自 Control) |
PaginateRecursive(ControlPager) |
已过时.
对控件及其子级进行分页。 由 ASP.NET 在内部调用。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
RaiseBubbleEvent(Object, EventArgs) |
已过时.
将所有事件源及其信息分配给控件的父级。 (继承自 Control) |
RaisePostBackEvent(String) |
已过时.
通知 List 对象回发事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
RemovedControl(Control) |
已过时.
从 Control 对象的 Controls 集合移除子控件后调用。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
Render(HtmlTextWriter) |
已过时.
将服务器控件内容发送到给定的 HtmlTextWriter 对象,该对象可编写将在客户端呈现的内容。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
RenderChildren(HtmlTextWriter) |
已过时.
使用提供的 HtmlTextWriter 输出服务器控件的子控件内容。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
RenderControl(HtmlTextWriter) |
已过时.
将服务器控件内容输出到所提供的 HtmlTextWriter 对象,如果启用了跟踪,则还将存储有关该控件的跟踪信息。 (继承自 Control) |
RenderControl(HtmlTextWriter, ControlAdapter) |
已过时.
使用提供的 HtmlTextWriter 对象将服务器控件内容输出到提供的 ControlAdapter 对象。 (继承自 Control) |
ResolveAdapter() |
已过时.
获取负责呈现指定控件的控件适配器。 (继承自 Control) |
ResolveClientUrl(String) |
已过时.
获取浏览器可以使用的 URL。 (继承自 Control) |
ResolveFormReference(String) |
已过时.
返回名称参数引用的窗体对象。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
ResolveUrl(String) |
已过时.
将 URL 转换为在请求客户端可用的 URL。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
SaveControlState() |
已过时.
保存将页面回发到服务器之后发生的所有服务器控件状态更改。 (继承自 Control) |
SavePrivateViewState() |
已过时.
保存从持久性存储加载页面后出现的任何私有视图状态更改。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
SaveViewState() |
已过时.
保存将页面回发到服务器之后发生的所有服务器控件视图状态更改。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
SetAttribute(String, String) |
已过时.
指定分配给 MobileControl 对象的特性及其值。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
SetDesignModeState(IDictionary) |
已过时.
为控件设置设计时数据。 (继承自 Control) |
SetRenderMethodDelegate(RenderMethod) |
已过时.
分配事件处理程序委托,以将服务器控件及其内容呈现到父控件中。 (继承自 Control) |
SetTraceData(Object, Object) |
已过时.
使用跟踪数据键和跟踪数据值,为呈现数据的设计时追踪设置跟踪数据。 (继承自 Control) |
SetTraceData(Object, Object, Object) |
已过时.
使用跟踪对象、跟踪数据键和跟踪数据值,为呈现数据的设计时追踪设置跟踪数据。 (继承自 Control) |
ToString() |
已过时.
返回表示当前对象的字符串。 (继承自 Object) |
TrackViewState() |
已过时.
导致跟踪服务器控件的视图状态的更改,以便这些更改可以存储到服务器控件的 StateBag 对象中。 通过 ViewState 属性可访问此对象。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
事件
DataBinding |
已过时.
当服务器控件绑定到数据源时发生。 (继承自 Control) |
Disposed |
已过时.
当从内存释放服务器控件时发生,这是请求 ASP.NET 页时服务器控件生存期的最后阶段。 (继承自 Control) |
Init |
已过时.
当服务器控件初始化时发生;初始化是控件生存期的第一步。 (继承自 Control) |
ItemCommand |
已过时.
在用户选择与 List 控件关联的命令时发生。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
ItemDataBind |
已过时.
在将 List 中的项绑定到数据时发生。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
Load |
已过时.
当服务器控件加载到 Page 对象中时发生。 (继承自 Control) |
LoadItems |
已过时.
在控件自定义分页且需要更多数据时发生。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 PagedControl) |
PreRender |
已过时.
在加载 Control 对象之后、呈现之前发生。 (继承自 Control) |
Unload |
已过时.
当服务器控件从内存中卸载时发生。 (继承自 Control) |
显式接口实现
扩展方法
FindDataSourceControl(Control) |
已过时.
返回与指定控件的数据控件关联的数据源。 |
FindFieldTemplate(Control, String) |
已过时.
返回指定控件的命名容器中指定列的字段模板。 |
FindMetaTable(Control) |
已过时.
返回包含数据控件的元表对象。 |
GetDefaultValues(INamingContainer) |
已过时.
为指定数据控件获取默认值的集合。 |
GetMetaTable(INamingContainer) |
已过时.
为指定数据控件获取表元数据。 |
SetMetaTable(INamingContainer, MetaTable) |
已过时.
为指定数据控件设置表元数据。 |
SetMetaTable(INamingContainer, MetaTable, IDictionary<String,Object>) |
已过时.
为指定数据控件设置表元数据和默认值映射。 |
SetMetaTable(INamingContainer, MetaTable, Object) |
已过时.
为指定数据控件设置表元数据和默认值映射。 |
TryGetMetaTable(INamingContainer, MetaTable) |
已过时.
确定表元数据是否可用。 |
EnableDynamicData(INamingContainer, Type) |
已过时.
为指定数据控件启用动态数据行为。 |
EnableDynamicData(INamingContainer, Type, IDictionary<String,Object>) |
已过时.
为指定数据控件启用动态数据行为。 |
EnableDynamicData(INamingContainer, Type, Object) |
已过时.
为指定数据控件启用动态数据行为。 |