Surance Center

服务器控件属性概述

一共有4种
1.通用形式属性  如:Text="aaa";

2.连字符形式属性
如 Font-Size=9pt;

3.内部嵌套形式属性(复杂属性)
如:
<asp:DataGrid id="d1" runat="server">
<headerStyle ForeColor="red"/>
</asp:DataGrid>

4.内部嵌套默认属性
类似3,只是某控件有这种属性的时候,该控件只能用这样的属性

<asp:DropDownList  id="d2" ruant="server">
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>32</asp:ListItem>
<asp:ListItem>342</asp:ListItem>
<asp:ListItem>52</asp:ListItem>
</asp:DropDownList>

posted @ 2007-06-04 20:38  xxp  阅读(229)  评论(0编辑  收藏  举报
Surance Center