CreateUserWizardDesigner Class
Extends design-time behavior for the CreateUserWizard Web server control.
Assembly: System.Design (in System.Design.dll)
Extend the CreateUserWizardDesigner class if you want to create a designer for a class that extends the CreateUserWizard Web server control.
The following code example shows how to extend the CreateUserWizardDesigner class and display debugging information on the design surface in case of an error.
using System; using System.IO; using System.ComponentModel; using System.Web.UI.WebControls; using System.Web.UI; using System.Web.UI.Design; using System.Web.UI.Design.WebControls; //using Examples.WebNet.Design; namespace Examples.WebNet { // Create a class that extends CreateUserWizardDesigner. public class MyCreateUserWizardDesigner : CreateUserWizardDesigner { // This variable contains debugging information. private string debugInfo = "Useful information."; // Override the GetErrorDesignTimeHtml method to add some more // information to the error message. protected override string GetErrorDesignTimeHtml(Exception e) { // Get the error message from the base class. string html = base.GetErrorDesignTimeHtml(e); // Append the debugging information to it. html += "<br>" + "DebugInfo: " + debugInfo; // Return the error message. return html; } } }
The following code example shows how to associate a control class with the designer defined in the preceding example.
using System; using System.IO; using System.ComponentModel; using System.Web.UI.WebControls; using System.Web.UI; using System.Web.UI.Design; using System.Web.UI.Design.WebControls; //using Examples.WebNet; namespace Examples.WebNet { // Create a class that extends CreateUserWizard and uses // MyCreateUserWizardDesigner as its designer. [Designer(typeof(Examples.WebNet.MyCreateUserWizardDesigner))] public class MyCreateUserWizard : CreateUserWizard { } }
- SecurityPermission
for calling unmanaged code. Demand value: Demand. Permission value: UnmanagedCode
System.ComponentModel.Design.ComponentDesigner
System.Web.UI.Design.HtmlControlDesigner
System.Web.UI.Design.ControlDesigner
System.Web.UI.Design.WebControls.CompositeControlDesigner
System.Web.UI.Design.WebControls.WizardDesigner
System.Web.UI.Design.WebControls.CreateUserWizardDesigner
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.