首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

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

2012-01-31 
服务器端取得style(在线求解!!)有一个控件TextBox1asp:TextBoxid TextBox1 runat server style w

服务器端取得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

热点排行