J
Joel Martinez
http://lab.msdn.microsoft.com/ProductFeedback/viewFeedback.aspx?feedbackId=FDBK18095
Problem Statement: Opened by Joel Martinez on 2004-11-18 at 11:54:24
It is cumbersome to have to type this.Controls.Add(new
LiteralControl("My Literal Content")) for custom server controls where
much literal content must be written out.
Proposed Solution: One more overload for the Add method ... here,
I'll even write it for you ;-)
public void Add(string literalContent)
{
this.Add(new LiteralControl(literalContent));
}
Benefits: Faster Development
Problem Statement: Opened by Joel Martinez on 2004-11-18 at 11:54:24
It is cumbersome to have to type this.Controls.Add(new
LiteralControl("My Literal Content")) for custom server controls where
much literal content must be written out.
Proposed Solution: One more overload for the Add method ... here,
I'll even write it for you ;-)
public void Add(string literalContent)
{
this.Add(new LiteralControl(literalContent));
}
Benefits: Faster Development