读书人

服务器端取得style(在线求解!)解决方法

发布时间: 2012-01-31 21:28:41 作者: rapoo

服务器端取得style(在线求解!!)
有一个控件TextBox1
<asp:TextBox id= "TextBox1 " runat= "server " style= "width:100px;heigth:100px "> </asp:TextBox>

在服务器端 怎么取得TextBox1的style属性值 "width:100px;heigth:100px "

请大家指点!

[解决办法]
TextBox1.Style不行么?
[解决办法]

TextBox1.Style[ "width "]
TextBox1.Style[ "heigth "]
[解决办法]
foreach (string sKey in this.TextBox1.Style.Keys) { Response.Write(sKey + ": " + this.TextBox1.Style[sKey] + " <BR> "); }
[解决办法]
友情UP

读书人网 >asp.net

热点推荐