I've answered :
http://forums.asp.net/t/1846358.aspx
Today I'm going to explain how can we get the Div or any Style Info of HTML Control from CodeBehind.
Suppose we have Div (with runat="server" attribute, means accessible from CodeBehind).
<div runat="server" id="velicina" style="max-width:500px;"></div>
First Add This NameSpace:
using System.Web.UI.HtmlControls;
Then Write Code:
HtmlControl YourDiv = (HtmlControl)Page.FindControl("velicina");
Response.Write("<b>Its the Width of your Div: velicina = " + Convert.ToString(YourDiv.Style["max-width"]) + "</b>");
OUTPUT:
Its...