property as TextBox

K

kaasztelann

The LabelProp property in properties-palette is expandable, so it is OK. The
problems are:
1. LabelProp is not persistent
2. When I change LabelProp.Text in properties-palette, MyControl is NOT
re-rendered.

Please Help.

C# CODE:

public class MyControl: System.Web.UI.WebControls.WebControl
{
Label lab_prop=new Label();

public Label LabelProp
{
set{lab_prop=value; }
get{return lab_prop;}
}

protected override void Render(HtmlTextWriter p_writer)
{
p_writer.Write(lab_prop.Text);
}

}
 

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

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,563
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top