目前我正在尝试根据我从aspx页面后面的代码中的数据库表中获取的信息来修改div的css样式属性.以简化的形式,以下基本上是我想要做但我得到错误.
这是我的代码:
ASPX:
Test
代码背后:
testSpace.Style = "display:none;" testSpace.Style("display") = "none";
任何帮助,将不胜感激.谢谢!
testSpace.Style.Add("display", "none");
这是一个HtmlGenericControl所以不确定推荐的方法是什么,所以你也可以这样做:
testSpace.Attributes.Add("style", "text-align: center;");
要么
testSpace.Attributes.Add("class", "centerIt");
要么
testSpace.Attributes["style"] = "text-align: center;";
要么
testSpace.Attributes["class"] = "centerIt";
希望有所帮助,尼克
另一种方法:
testSpace.Style.Add("display", "none");
要么
testSpace.Style["background-image"] = "url(images/foo.png)";
在vb.net中你可以这样做:
testSpace.Style.Item("display") = "none"