Hi,
Thanks for your answer. You mean that the resulting html sent to the client should use style like "width:400px" instead of width="400"? In that case I totally agree. But my problem is that the server side attributes Width and Height are not set and therefore not accessible from the control code. For example:
public override Unit Width
{
get { return base.Width; }
set
{
base.Width = value;
// Update child control widths based on parent width calculations
// ...
}
}
But Width and Height are not changed when the control is resized (if using absolute positions).
Are the Width and Height properties themselves deprecated and should not be relied upon? In that case - why are they set when non-absolute controls are resized?
Regards,
Stefan