zoukankan      html  css  js  c++  java
  • 每日日报2021.3.29

    今天完成内容:

    学习andriod GridView

     9.GridView实现自动编号:

    实现方法:
    双击GridView的OnRowDataBound事件
    在后台的GridView1_RowDataBound()方法添加代码:

    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            //如果是绑定数据行 
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                ////鼠标经过时,行背景色变 
                //e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#E6F5FA'");
                ////鼠标移出时,行背景色变 
                //e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#FFFFFF'");

                ////当有编辑列时,避免出错,要加的RowState判断 
                //if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate)
                //{
                //    ((LinkButton)e.Row.Cells[6].Controls[0]).Attributes.Add("onclick", "javascript:return confirm('你确认要删除:"" + e.Row.Cells[1].Text + ""吗?')");
                //}

            }
            if (e.Row.RowIndex != -1)
            {
                int id = e.Row.RowIndex + 1;
                e.Row.Cells[0].Text = id.ToString();
            }

        }

    <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="3" OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing"
                            OnRowUpdating="GridView1_RowUpdating" OnRowCancelingEdit="GridView1_RowCancelingEdit" BackColor="White" BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px" Font-Size="12px" OnRowDataBound="GridView1_RowDataBound">
                            <FooterStyle BackColor="White" ForeColor="#000066" />
                            <Columns>
                                <asp:BoundField DataField="身份证号码" HeaderText="编号" ReadOnly="True" />
                                <asp:BoundField DataField="姓名" HeaderText="用户姓名" />
                                <asp:BoundField DataField="员工性别" HeaderText="性别" />
                                <asp:BoundField DataField="家庭住址" HeaderText="家庭住址" />
                                <asp:CommandField HeaderText="选择" ShowSelectButton="True" />
                                <asp:CommandField HeaderText="编辑" ShowEditButton="True" />
                                <asp:CommandField HeaderText="删除" ShowDeleteButton="True" />
                            </Columns>
                            <RowStyle ForeColor="#000066" />
                            <SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" />
                            <PagerStyle BackColor="White" ForeColor="#000066" HorizontalAlign="Left" />
                            <HeaderStyle BackColor="#006699" Font-Bold="True" ForeColor="White" />
                        </asp:GridView>

    看视频

    遇到问题:

    明日目标:

    学习Android studio的开发

  • 相关阅读:
    牛客网Java刷题知识点之什么是进程、什么是线程、什么是多线程、多线程的好处和弊端、多线程的创建方式、JVM中的多线程解析、多线程运行图解
    [转]OData的初步认识 OData v4 Client Code Generator
    [转]OData – the best way to REST–实例讲解ASP.NET WebAPI OData (V4) Service & Client
    [转]Calling an OData Service From a .NET Client (C#)
    [转]Upgrading to Async with Entity Framework, MVC, OData AsyncEntitySetController, Kendo UI, Glimpse & Generic Unit of Work Repository Framework v2.0
    [转]ASP.NET web API 2 OData enhancements
    [转]Web Api系列教程第2季(OData篇)(二)——使用Web Api创建只读的OData服务
    [转]Creating an OData v3 Endpoint with Web API 2
    [转]Getting started with ASP.NET Web API OData in 3 simple steps
    [转]使用ASP.NET Web API 2创建OData v4 终结点
  • 原文地址:https://www.cnblogs.com/leiyu1905/p/14909827.html
Copyright © 2011-2022 走看看