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.

Id and CssClass not defined

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
shapper - 28 Dec 2007 18:27 GMT
Hello,

I created a custom control that inherits CompositeControl:

 Public Class MySection
   Inherits CompositeControl
   ...
   Protected Overrides Sub CreateChildControls()
     ...
     MyBase.CreateChildControls()
     Me.ChildControlsCreated = True
   End Sub

 End Class MySection

When I use this control I define its ID and CssClass.
However, when I check the rendered output the ID and CssClass are not
defined.
What am I doing wrong?

Shoudn't this be working, since I am inheriting my control from
CompositeControl?

Thanks,
Miguel
Milosz Skalecki [MCAD] - 30 Dec 2007 01:12 GMT
Hi Shapper,

HTML output should be rendered as <span id="yourId"
class="yourclass"></span>. In addition, there's no need for setting
ChildControlsCreated to true because EnsureChildControls method does it for
you.
I'm guessing something else is causing problem, paste all the code.
Signature

Milosz

> Hello,
>
[quoted text clipped - 21 lines]
> Thanks,
> Miguel
shapper - 30 Dec 2007 02:01 GMT
On Dec 30, 1:12 am, Milosz Skalecki [MCAD] <mily...@DONTLIKESPAMwp.pl>
wrote:
> Hi Shapper,
>
[quoted text clipped - 31 lines]
> > Thanks,
> > Miguel

Hi,

I think I found the problem. In my custom control I also have the
following:

   Public Overloads Overrides Sub RenderBeginTag(ByVal writer As
HtmlTextWriter)
     writer.RenderBeginTag(HtmlTextWriterTag.Div)
   End Sub ' RenderBeginTag
   Public Overloads Overrides Sub RenderEndTag(ByVal writer As
HtmlTextWriter)
     writer.RenderEndTag()
   End Sub ' RenderEndTag

I changed it to:

   Public Overloads Overrides Sub RenderBeginTag(ByVal writer As
HtmlTextWriter)

     With writer
       If Me.ID <> Nothing
Then .AddAttribute(HtmlTextWriterAttribute.Id, Me.ID)
       If Me.CssClass <> Nothing
Then .AddAttribute(HtmlTextWriterAttribute.Class, Me.CssClass)
     End With
     With writer
       If Me.Width <> Nothing
Then .AddAttribute(HtmlTextWriterAttribute.Style, "width: " &
Me.Width.ToString)
     End With

     ' Render begin tag
     writer.RenderBeginTag(HtmlTextWriterTag.Div)

   End Sub ' RenderBeginTag

Now it is working.

Am I doing this right? Do I really need to do this?

Thanks,
Miguel
Milosz Skalecki [MCAD] - 30 Dec 2007 02:48 GMT
You don't need to bacause cssclass and id are rendered automatically. In
order to change default span tag to div, override TagKey property:

protected readonly overrides property TagKey() as HtmlTextWriterTag
get
  return HtmlTextWriterTag.Div
end get
end property

hope this helps
Signature

Milosz

> On Dec 30, 1:12 am, Milosz Skalecki [MCAD] <mily...@DONTLIKESPAMwp.pl>
> wrote:
[quoted text clipped - 76 lines]
> Thanks,
> Miguel

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.