AdRotator 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,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 AdRotator : System::Web::UI::MobileControls::MobileControl
[System.Web.UI.MobileControls.DesignerAdapter(typeof(System.Web.UI.Design.MobileControls.Adapters.DesignerAdRotatorAdapter))]
public class AdRotator : System.Web.UI.MobileControls.MobileControl
[System.Web.UI.MobileControls.DesignerAdapter(typeof(System.Web.UI.Design.MobileControls.Adapters.DesignerAdRotatorAdapter))]
[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 AdRotator : System.Web.UI.MobileControls.MobileControl
[<System.Web.UI.MobileControls.DesignerAdapter(typeof(System.Web.UI.Design.MobileControls.Adapters.DesignerAdRotatorAdapter))>]
type AdRotator = class
inherit MobileControl
[<System.Web.UI.MobileControls.DesignerAdapter(typeof(System.Web.UI.Design.MobileControls.Adapters.DesignerAdRotatorAdapter))>]
[<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 AdRotator = class
inherit MobileControl
Public Class AdRotator
Inherits MobileControl
- 继承
- 属性
示例
下面的代码示例由两个部分组成:文件中 ASP.NET 移动 Web 窗体页 .aspx
和 XML 文件。 文件 .aspx
使用名为 ads.xml
的文件根据 KeywordFilter 属性轮换各种播发。 如果为示例提供图像,则会显示它们:否则,控件 AdRotator 将显示播发的 AlternateText 属性的值。 当用户刷新移动 Web 窗体页面时,该页面将显示基于 KeywordFilter的下一个随机选择的广告。
该示例还演示了<如果用户的浏览器需要 WML 标记,如何使用 Choice> 元素替代属性,以及如何分别使用 ImageKey 和 属性将图像的 src
和 href
NavigateUrlKey 属性映射到 XML 文件中的数据。
尽管此示例使用 函数来确定浏览器是否需要 WML () isWML11
,但你可以改用 Web.config 文件来定义 DeviceSpecific .NET Framework 自动用于确定的元素:
注意
下面的代码示例使用单文件代码模型,如果直接复制到代码隐藏文件中,可能无法正常工作。 必须将此代码示例复制到扩展名为 .aspx 的空文本文件中。 有关 Web 窗体代码模型的详细信息,请参阅 ASP.NET Web 窗体页代码模型。
.aspx
文件:
<%@ Page Language="C#"
Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls" %>
<%@ Import Namespace="System.Web.Mobile" %>
<script runat="server">
//<Snippet3>
private void AdCreated_Event(Object sender, AdCreatedEventArgs e)
{
Label2.Text = "Clicking the AdRotator control takes you to " +
e.NavigateUrl;
}
//</Snippet3>
// Determine whether the current browser is a WML brower
public bool isWML11(MobileCapabilities caps, string optValue)
{
// Determine if the browser is not a Web crawler and
// requires WML markup
if (!caps.Crawler && caps.PreferredRenderingType ==
MobileCapabilities.PreferredRenderingTypeWml11)
return true;
else
return false;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:form id="form1" runat="server">
<!-- The AdRotator control -->
<mobile:AdRotator id="AdControl" runat="server"
ImageKey="MobileImgSrc" NavigateUrlKey="TargetUrl"
AdvertisementFile="App_Data/ads.xml" Alignment="Left"
KeywordFilter="Developer" OnAdCreated="AdCreated_Event">
<DeviceSpecific>
<Choice Filter="isWML11" NavigateUrlKey="WmlTargetUrl"
ImageKey= "WmlImageSrc" />
</DeviceSpecific>
</mobile:AdRotator>
<!-- The instructions label -->
<mobile:Label id="Label1" runat="server"
Text="Refresh the page to change the advertisement" />
<!-- The URL info label -->
<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" %>
<%@ Import Namespace="System.Web.Mobile" %>
<script runat="server">
'<Snippet3>
Private Sub AdCreated_Event(ByVal sender As Object, _
ByVal e As AdCreatedEventArgs)
Label2.Text = "Clicking the AdRotator control takes you to " + _
e.NavigateUrl
End Sub
'</Snippet3>
' Determine whether the current browser is a WML brower.
Public Function isWml11(ByVal caps As MobileCapabilities, _
ByVal value As String) As Boolean
If Not caps.Crawler AndAlso caps.PreferredRenderingMime = _
MobileCapabilities.PreferredRenderingTypeWml11 Then
Return True
Else
Return False
End If
End Function
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:form id="form1" runat="server">
<!-- The AdRotator control -->
<mobile:AdRotator id="AdControl" runat="server"
ImageKey="MobileImgSrc" NavigateUrlKey="TargetUrl"
AdvertisementFile="App_Data/ads.xml" Alignment="Left"
KeywordFilter="Developer" OnAdCreated="AdCreated_Event">
<DeviceSpecific>
<Choice Filter="isWML11" NavigateUrlKey="WmlTargetUrl"
ImageKey= "WmlImageSrc" />
</DeviceSpecific>
</mobile:AdRotator>
<!-- The instructions label -->
<mobile:Label id="Label1" runat="server"
Text="Refresh the page to change the advertisement" />
<!-- The URL info label -->
<mobile:Label id="Label2" runat="server" />
</mobile:form>
</body>
</html>
示例 ads.xml
文件 (必须位于 App_Data 文件夹中) :
<?xml version="1.0" encoding="utf-8" ?>
<Advertisements>
<Ad>
<WebImgSrc>imgA1.gif</WebImgSrc>
<MobileImgSrc>imgA2.gif</MobileImgSrc>
<WmlImgSrc>imgA3.gif</WmlImgSrc>
<TargetUrl>http://msdn.microsoft.com/</TargetUrl>
<WmlTargetUrl>http://OurServer/MS-MSDN.wml</WmlTargetUrl>
<AlternateText>MSDN</AlternateText>
<Keyword>Developer</Keyword>
<Impressions>80</Impressions>
</Ad>
<Ad>
<WebImgSrc>imgB1.gif</WebImgSrc>
<MobileImgSrc>imgB2.gif</MobileImgSrc>
<WmlImgSrc>imgB3.gif</WmlImgSrc>
<TargetUrl>http://www.microsoft.com/</TargetUrl>
<WmlTargetUrl>http://OurServer/MS-Home.wml</WmlTargetUrl>
<AlternateText>Microsoft</AlternateText>
<Keyword>Customer</Keyword>
<Impressions>90</Impressions>
</Ad>
<Ad>
<WebImgSrc>imgC1.gif</WebImgSrc>
<MobileImgSrc>imgC2.gif</MobileImgSrc>
<WmlImgSrc>imgC3.gif</WmlImgSrc>
<TargetUrl>http://www.microsoft.com/net/</TargetUrl>
<WmlTargetUrl>http://OurServer/MS-Net.wml</WmlTargetUrl>
<AlternateText>.NET</AlternateText>
<Keyword>Developer</Keyword>
<Impressions>80</Impressions>
</Ad>
</Advertisements>
注解
类 AdRotator 使用与 Web 窗体 AdRotator 类相同的配置文件。 移动 System.Web.UI.MobileControls.AdRotator 控件公开许多与控件相同的属性和事件 System.Web.UI.WebControls.AdRotator ,并添加了移动功能。 每当刷新页面时,显示的播发会更改。
属性 AdvertisementFile 指定包含播发信息的 XML 文件的位置。 此文件必须驻留在应用程序域中。 出于安全目的,XML 文件应位于 App_Data 文件夹中,该文件夹配置为不允许用户直接访问 XML 文件。 AdvertisementFile如果 属性为空,控件将AdRotator生成单个中断标记作为占位符。 当你不想显示广告时,这很有用。
构造函数
AdRotator() |
已过时.
初始化 AdRotator 类的新实例。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
属性
Adapter |
已过时.
返回控件的设备特定适配器。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
AdvertisementFile |
已过时.
获取或设置包含公布数据的 XML 文件的路径。 默认值为空字符串 ("")。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
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) |
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) |
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) |
ID |
已过时.
获取或设置分配给服务器控件的编程标识符。 (继承自 Control) |
IdSeparator |
已过时.
获取用于分隔控件标识符的字符。 (继承自 Control) |
ImageKey |
已过时.
返回广告中的从中检索图像 URL 的元素名。 默认值为“ImageUrl”。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
InnerText |
已过时.
返回该控件内部的文本。 该内部文本可能是子控件中文本的组合。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
IsChildControlStateCleared |
已过时.
获取一个值,该值指示该控件中包含的控件是否具有控件状态。 (继承自 Control) |
IsTemplated |
已过时.
获取一个值,该值指示 MobileControl 对象是否有活动的模板集。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
IsTrackingViewState |
已过时.
获取一个值,用于指示服务器控件是否会将更改保存到其视图状态中。 (继承自 Control) |
IsViewStateEnabled |
已过时.
获取一个值,该值指示是否为该控件启用了视图状态。 (继承自 Control) |
KeywordFilter |
已过时.
获取或设置可用于从广告文件中筛选广告的类别关键字。 默认值为空字符串("")。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
LastPage |
已过时.
返回该窗体的最后一页,指定控件在该页上显示。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
LoadViewStateByID |
已过时.
获取一个值,该值指示控件是否通过 ID 而不是索引参与加载其视图状态。 (继承自 Control) |
MobilePage |
已过时.
返回包含页。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
NamingContainer |
已过时.
获取对服务器控件的命名容器的引用,此引用创建唯一的命名空间,以区分具有相同 ID 属性值的服务器控件。 (继承自 Control) |
NavigateUrlKey |
已过时.
获取或设置包含目标 URL 的元素的名称。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
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) |
VisibleWeight |
已过时.
获取控件的近似权重(以字符为单位)。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
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) |
已过时.
通知服务器控件,分析了一个元素(XML 或 HTML),并将该元素添加到服务器控件的 ControlCollection 对象中。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
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() |
已过时.
由 ASP.NET 页框架调用,以通知服务器控件在准备回发或呈现时使用基于撰写的实现来创建其所包含任何子控件。 (继承自 Control) |
CreateControlCollection() |
已过时.
创建一个新 ControlCollection 对象来保存服务器控件的子控件(包括文本控件和服务器控件)。 (继承自 Control) |
CreateDefaultTemplatedUI(Boolean) |
已过时.
由设备适配器调用,以创建控件的默认模板化用户界面 (UI)。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
CreateStyle() |
已过时.
构造并返回与控件关联的样式对象。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
CreateTemplatedUI(Boolean) |
已过时.
由基类调用,以创建模板化用户界面。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
CreateWebAdRotator() |
已过时.
返回新 AdRotator 对象。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
DataBind() |
已过时.
将数据源绑定到调用的服务器控件及其所有子控件。 (继承自 Control) |
DataBind(Boolean) |
已过时.
将数据源绑定到调用的服务器控件及其所有子控件,同时可以选择引发 DataBinding 事件。 (继承自 Control) |
DataBindChildren() |
已过时.
将数据源绑定到服务器控件的子控件。 (继承自 Control) |
Dispose() |
已过时.
使服务器控件得以在从内存中释放之前执行最后的清理操作。 (继承自 Control) |
EndRenderTracing(TextWriter, Object) |
已过时.
结束输出数据的设计时追踪。 (继承自 Control) |
EnsureChildControls() |
已过时.
确定服务器控件是否包含子控件。 如果不包含,则创建子控件。 (继承自 Control) |
EnsureID() |
已过时.
为尚未分配标识符的控件创建标识符。 (继承自 Control) |
EnsureTemplatedUI() |
已过时.
使用此方法可以确保已对模板进行了实例化,以允许对模板的实例化内容进行编程访问。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
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 的网站。 (继承自 MobileControl) |
LoadViewState(Object) |
已过时.
从用 SaveViewState() 方法保存的上一个页面请求还原视图状态信息。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
MapPathSecure(String) |
已过时.
检索虚拟路径(绝对的或相对的)映射到的物理路径。 (继承自 Control) |
MemberwiseClone() |
已过时.
创建当前 Object 的浅表副本。 (继承自 Object) |
OnAdCreated(AdCreatedEventArgs) |
已过时.
为 AdCreated 控件引发 AdRotator 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
OnBubbleEvent(Object, EventArgs) |
已过时.
确定服务器控件的事件是否沿页的 UI 服务器控件层次结构向上传递。 (继承自 Control) |
OnDataBinding(EventArgs) |
已过时.
引发 DataBinding 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OnInit(EventArgs) |
已过时.
引发 Init 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OnLoad(EventArgs) |
已过时.
引发 Unload 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OnPageChange(Int32, Int32) |
已过时.
对控件分页。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OnPreRender(EventArgs) |
已过时.
引发 PreRender 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OnRender(HtmlTextWriter) |
已过时.
将控件呈现到指定的输出流。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OnUnload(EventArgs) |
已过时.
引发 Unload 事件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
OpenFile(String) |
已过时.
获取用于读取文件的 Stream。 (继承自 Control) |
PaginateRecursive(ControlPager) |
已过时.
对控件及其子级进行分页。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
RaiseBubbleEvent(Object, EventArgs) |
已过时.
将所有事件源及其信息分配给控件的父级。 (继承自 Control) |
RemovedControl(Control) |
已过时.
从 Control 对象的 Controls 集合移除子控件后调用。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
Render(HtmlTextWriter) |
已过时.
在客户端上呈现控件。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
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() |
已过时.
保存从持久性存储加载页面后出现的任何私有视图状态更改。 如果未进行任何更改,则此方法返回 |
SaveViewState() |
已过时.
保存将页面回发到服务器之后发生的所有服务器控件视图状态更改。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
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() |
已过时.
导致跟踪服务器控件的视图状态的更改,以便这些更改可以存储到服务器控件的 ViewState 属性中。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 (继承自 MobileControl) |
事件
AdCreated |
已过时.
每次显示广告时发生。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
DataBinding |
已过时.
当服务器控件绑定到数据源时发生。 (继承自 Control) |
Disposed |
已过时.
当从内存释放服务器控件时发生,这是请求 ASP.NET 页时服务器控件生存期的最后阶段。 (继承自 Control) |
Init |
已过时.
当服务器控件初始化时发生;初始化是控件生存期的第一步。 (继承自 Control) |
Load |
已过时.
当服务器控件加载到 Page 对象中时发生。 (继承自 Control) |
PreRender |
已过时.
在加载 Control 对象之后、呈现之前发生。 (继承自 Control) |
Unload |
已过时.
当服务器控件从内存中卸载时发生。 (继承自 Control) |
显式接口实现
扩展方法
FindDataSourceControl(Control) |
已过时.
返回与指定控件的数据控件关联的数据源。 |
FindFieldTemplate(Control, String) |
已过时.
返回指定控件的命名容器中指定列的字段模板。 |
FindMetaTable(Control) |
已过时.
返回包含数据控件的元表对象。 |