ChangePasswordDesigner.GetDesignTimeHtml 方法

定义

获取用于在设计时呈现关联控件的标记。

重载

GetDesignTimeHtml()

获取用于在设计时呈现关联控件的标记。

GetDesignTimeHtml(DesignerRegionCollection)

获取用于在设计时呈现关联控件的标记,并填充设计器区域的集合。

GetDesignTimeHtml()

获取用于在设计时呈现关联控件的标记。

public:
 override System::String ^ GetDesignTimeHtml();
public override string GetDesignTimeHtml ();
override this.GetDesignTimeHtml : unit -> string
Public Overrides Function GetDesignTimeHtml () As String

返回

一个 String,其中包含用于在设计时呈现 ChangePassword 的标记。

注解

方法 GetDesignTimeHtml 将关联 ChangePassword 控件的模式(可以是副本)设置为实际控件的当前模式。 接下来,它会强制重新创建子控件,然后调用基方法来生成标记。 如果发生错误, 将 GetDesignTimeHtml 调用 GetErrorDesignTimeHtml 方法来生成占位符的标记。

继承者说明

如果重写 GetDesignTimeHtml() 方法,请确保调用基方法,因为它最终会调用 ChangePassword 控件或控件的副本来生成标记。

另请参阅

适用于

GetDesignTimeHtml(DesignerRegionCollection)

获取用于在设计时呈现关联控件的标记,并填充设计器区域的集合。

public:
 override System::String ^ GetDesignTimeHtml(System::Web::UI::Design::DesignerRegionCollection ^ regions);
public override string GetDesignTimeHtml (System.Web.UI.Design.DesignerRegionCollection regions);
override this.GetDesignTimeHtml : System.Web.UI.Design.DesignerRegionCollection -> string
Public Overrides Function GetDesignTimeHtml (regions As DesignerRegionCollection) As String

参数

regions
DesignerRegionCollection

一个 DesignerRegionCollection,其中已添加关联的控件的当前视图的定义。

返回

一个 String,其中包含用于在设计时呈现 ChangePassword 的标记。

注解

方法 GetDesignTimeHtml(DesignerRegionCollection) 调用 方法, GetDesignTimeHtml() 为控件的设计时呈现 ChangePassword 生成标记。 它还将 对象添加到 DesignerRegion 参数, regions 用于描述控件的 ChangePassword 当前视图。

继承者说明

如果重写 GetEditableDesignerRegionContent(EditableDesignerRegion) 方法,请确保调用基方法,因为它最终会调用 ChangePassword 控件或控件的副本来生成标记。

另请参阅

适用于