Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / December 2007

Tip: Looking for answers? Try searching our database.

Can't set value to the property "Width" of my custom webcontrol

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Brook - 30 Nov 2007 01:33 GMT
In webform.aspx:  <cc:ctlB ID="ctl1" runat="server" Width="200px" />

If set value to width property, I will get a error that say ctlB.Page is null. This control will be fine with no width property, why?

Could anybody help me ? thanks

ctlA.cs
----------------------------
[
AspNetHostingPermission(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal),
AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal),
DefaultProperty("Text"),
ValidationProperty("Text"),
ToolboxData("<{0}:ctlA runat=\"server\"> </{0}:ctlA>")
]
public class ctlA : WebControl, INamingContainer
{
   protected TextBox _textBox;
   protected HiddenField _hiddenBox;

   [Bindable(false), DefaultValue(""), TypeConverter(typeof(UnitConverter))]
   public override Unit Width
   {
       get
       {
           EnsureChildControls();
           return this._textBox.Width;
       }
       set
       {
           EnsureChildControls();
           this._textBox.Width = value;
       }
   }

   public override bool EnableViewState
   {
       get
       {
           EnsureChildControls();
           return this._textBox.EnableViewState;
       }
       set
       {
           EnsureChildControls();
           this._textBox.EnableViewState = value;
           this._hiddenBox.EnableViewState = value;
           this.EnableViewState = value;
       }
   }

   protected override void CreateChildControls()
   {
       this._textBox = new TextBox();
       this._textBox.ID = "Name";
       this._textBox.ReadOnly = this.ReadOnly;
       this._hiddenBox = new HiddenField();
       this._hiddenBox.ID = "Value";

       this.Controls.Add(this._textBox);
       this.Controls.Add(this._hiddenBox);
   }

   protected override void Render(HtmlTextWriter writer)
   {
       EnsureChildControls();
       base.Render(writer);
   }

   public override ControlCollection Controls
   {
       get
       {
           EnsureChildControls();
           return base.Controls;
       }
   }

   public ctlA()
       : base(HtmlTextWriterTag.Span)
   {
   }
}

--------------------------------------------------------------------------------

ctlB.cs
------------------------------

[ToolboxData("<{0}:ctlB runat=\"server\"> </{0}:ctlB>")]
public class ctlB : ctlA
{
   internal Image _schImage;

   public ctlB()
       : base()
   {
   }

   protected override void CreateChildControls()
   {
       base.CreateChildControls();

       this._schImage = new Image();
       this._schImage.ID = "imgButton";
       this._schImage.Attributes["align"] = "absmiddle";

       this._schImage.Attributes["onclick"] = String.Format("__OpenDialog('{0}', null, {1}, {2}, '{3}', '{4}', {5});",
       Page.ResolveUrl(this.DialogPagePath), this.DialogWidth.ToString(), this.DialogHeight.ToString(), this._textBox.ClientID, this._hiddenBox.ClientID, (this.DialogMode == DialogMode.Model) ? "true" : "false");

       this.Controls.Add(_schImage);
   }

   protected override void OnPreRender(EventArgs e)
   {
       base.OnPreRender(e);
       this.Page.ClientScript.RegisterClientScriptResource(this.GetType(), "OpenDialog.js");
   }

   public override ControlCollection Controls
   {
       get
       {
           EnsureChildControls();
           return base.Controls;
       }
   }
}
bruce barker - 30 Nov 2007 02:46 GMT
simple, your CreateChildControls references Page before it has been set.
your control should handle being created and its properties set before
being added to the Pages control collection. to work in a designer it
should handle nopage and no request.

defer references to other controls (like the page) until prerender or
render.

-- bruce (sqlwork.com)

>  
> In webform.aspx:  <cc:ctlB ID="ctl1" runat="server" Width="200px" />
[quoted text clipped - 135 lines]
>     }
> }
Brook - 02 Dec 2007 04:37 GMT
thank you, bruce!
the problem be solved by your help.

But i can't read embeded resource with no page object.

this._schImage.ImageUrl = Page.ClientScript.GetWebResourceUrl(typeof(ctlB),
"Search.gif");

How can i get embeded resource in design mode to instead of
GetWebResourceUrl method ?

> simple, your CreateChildControls references Page before it has been set.
> your control should handle being created and its properties set before
[quoted text clipped - 142 lines]
>>     }
>> }

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.