首页 > 开发 > 综合 > 正文

关于如何添加一个自增的列【原创】

2024-07-21 02:25:07
字体:
来源:转载
供稿:网友
页面关键代码:绑定一个方法
                                <asp:templatecolumn headertext="编号">
                        <itemstyle horizontalalign="center"></itemstyle>
                        <itemtemplate>
                        <%# getindex(databinder.eval(container.dataitem, "id"))%>
                        </itemtemplate>
                    </asp:templatecolumn>

后台处理此方法:
        public int getindex (object deptcode)
        {
            int ri=0;
            dataview mydv=new depart().depart_getalldept();
            for (int i=0;i<mydv.count;i++)
            {
                if (mydv[i].row["bmid"].tostring()==deptcode.tostring())
                {
                    ri=i;
                    i=mydv.count;
                }
            }
            return ri;
        }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表