LinkButton Inherited from WebControl problem?

D

Dave

Hi,

I'm inheriting a LinkButton from a WebControl....

public class LinkButtonFromWebControl : System.Web.UI.WebControls.WebControl

However, in the aspx, if I add the "CssClass=", "CausesValidation=", etc attributes to this control...

<Custom:LinkButtonFromWebControl id="LinkButton3" runat="server" CssClass="linkButtonClass" CausesValidation=False>LinkButton inherited From WebControl</Custom:LinkButtonFromWebControl>

why aren't they displayed as part of the HTML output automatically when the control is rendered?

It's as if I have to manually add them the html output by using "class=" + this.CssClass etc. I would think if this control is inherited from WebControl it would do this for you??

Do I have to implement some type of handler? Thanks, Dave
 
T

Teemu Keiski

Hi,

have you overridden something in addition to just deriving from WebControl?

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist
http://blogs.aspadvice.com/joteke


Dave said:
Hi,

I'm inheriting a LinkButton from a WebControl....

public class LinkButtonFromWebControl : System.Web.UI.WebControls.WebControl

However, in the aspx, if I add the "CssClass=", "CausesValidation=", etc attributes to this control...

<Custom:LinkButtonFromWebControl id="LinkButton3" runat="server"
CssClass="linkButtonClass" CausesValidation=False>LinkButton inherited From
WebControl said:
why aren't they displayed as part of the HTML output automatically when the control is rendered?

It's as if I have to manually add them the html output by using "class=" +
this.CssClass etc. I would think if this control is inherited from
WebControl it would do this for you??
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,046
Latest member
Gavizuho

Latest Threads

Top