ASP.NET控件的一些属性.....

    技术2022-05-11  91

    1.DataList的一些样式:<asp:DataList  id="DataList1"  CellSpacing="20"  CellPadding="10"  ItemStyle-BorderStyle="Dashed" //虚线  AlternatingItemStyle-BackColor="pink"  Runat="Server"> <HeaderTemplate>  //页眉样式   <h2>Author Phone Numbers:</h2></HeaderTemplate><SeparatorTemplate>  <hr></SeparatorTemplate>   //分隔线<SelectedItemTemplate>  <b><i><%#DataBinder.Eval(Container.DataItem, "au_lname" )%></i></b></SelectedItemTemplate>    //选择时的样式</asp:DataList>

    Web控件的样式:<asp:TextBox  id="txtTextBox1"  BackColor="red"  Text="Here is some text!"  BackColor = "Yellow";  ForeColor  ="Green";  BorderStyle  = "Dashed";  BorderWidth  = "new Unit(4)";  Runat="Server"/>


    最新回复(0)