C
cmrchs
Hi,
I have a web servercontrol with a property
public Color TextColor
{
get
{
return txtValue.ForeColor;
}
set
{
txtValue.ForeColor = value;
}
when the client sets the TextColor, the usercontrol does not change
the color of the text.
I need somehow to perform a refresh or something like but what
exaclty?
thank you
Chris
I have a web servercontrol with a property
public Color TextColor
{
get
{
return txtValue.ForeColor;
}
set
{
txtValue.ForeColor = value;
}
when the client sets the TextColor, the usercontrol does not change
the color of the text.
I need somehow to perform a refresh or something like but what
exaclty?
thank you
Chris