Posted on: 5/29/2014 3:53:18 AM | Views : 402

hi

i loading some dynamic labels from code behind including attributes.
label.Attributes.Add("class", "draglabel") label.Attributes.Add("style", "position:relative; border-style:solid;border-width:1px;left:" & label.Left & "px;top:" & Me.Height.Value - label.Top & "px;width:" & label.iSize.Width & "px;height:" & label.iSize.Height & "px;") Dim label As new LabelField Me.panel(index).Width = Me.Width Me.panel(index).Height = Me.Height Me.panel(index).Controls.Add(label) when i check the html the width and height shows correct value but not the UI of the label. anyone has any idea on whats going on?
when i slightly resize the label. the size immediatly went become is orginal size like below.
<span class=& ...

Go to the complete details ...