Hi,
I have declared one div from code behind, and added some text and controls into that. Now I need the height of that div for some reason. My code is --
Dim dv1 As New System.Web.UI.HtmlControls.HtmlGenericControl("DIV")
dv1.InnerHtml = txtAddress.Text
Now the question is how to get height of dv1. I have tried dv1.height but its not working. I also tried dvSeamPropertiesReliance.Style("height") but it also not works for me. Please help me.
Thank you in advance.