關於列表操作內容

1、列表序號:

     1.1、GridView
                    <asp:TemplateField>
                        <ItemTemplate>
                            <%# Container.DataItemIndex+1 %>
                        </ItemTemplate>
                        <ItemStyle Width="20px" HorizontalAlign="Center" CssClass="myIdentity" />
                        <HeaderStyle Width="20px" />
                    </asp:TemplateField>

 

 

2、列表間隔換色:

    2.1、 GridView

          protected void Gridview1_RowDataBound(object sender, GridViewRowEventArgs e)
         {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                  //鼠標到行上時顏色的改變
                  e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='FFFADC';");
                  e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c;");
            }
        }

 

3、頁面調用cs方法:

     page: ToolTip='<%#getWzPath(Eval("Oaction"))%>'

     aspx.cs: public string getWzPath(object action)

    {return "";}

 

 

 

 

發佈了50 篇原創文章 · 獲贊 1 · 訪問量 9萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章