为DataGrid添加自动编号功能

2019-04-15 14:05发布

http://www.xmlasp.net/n655c12.aspx





logo.gif
加入收藏
网站地图
联系我们
网站搜索 首页 图片 热点 专题 动网新闻.Net 技术文章 Flash欣赏 新闻信息 网络文摘 星座命理 英语学习 .Net讨论区   动网新闻系统技术文章Asp.net 阅读新闻

为DataGrid添加自动编号功能

[日期:2003-12-26] 来源:孟宪会之精彩世界  作者:孟宪会 [字体: ] 下面的代码实现在DataGrid中添加自动编号的功能,主要是在数据绑定时利用Item属性。 DataGridWithLine.aspx <%@ Page Language="vb" AutoEventWireup="false" Codebehind="DataGridWithLine.aspx.vb"
Inherits="aspxWeb.DataGridWithLine"%>


 
    DataGridWithLine
   
   
   
   
 
 
   

     
       
       
         
         
         
       

     

   

 



DataGridWithLine.aspx.vb Imports System Imports System.Data Imports System.Data.OleDb Public Class DataGridWithLine Inherits System.Web.UI.Page Protected WithEvents DataGrid1 As System.Web.UI.WebControls.DataGrid #Region " Web 窗体设计器生成的代码 " '该调用是 Web 窗体设计器所必需的。 Private Sub InitializeComponent() End Sub Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init 'CODEGEN: 此方法调用是 Web 窗体设计器所必需的 '不要使用代码编辑器修改它。 InitializeComponent() End Sub #End Region Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load DataGrid1.Columns(0).HeaderText = "序号" DataGrid1.Columns(1).HeaderText = "文章标题" DataGrid1.Columns(2).HeaderText = "创建日期" Dim cnString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("Test.mdb") Dim strSQL As String = "SELECT TOP 21 Title,CreateDate FROM Document ORDER By CreateDate DESC" Dim cn As New OleDbConnection(cnString) cn.Open() Dim cmd As New OleDbCommand(strSQL, cn) Dim db As OleDbDataReader db = cmd.ExecuteReader(CommandBehavior.CloseConnection) DataGrid1.DataSource = db DataGrid1.DataBind() cn.Close() cn = Nothing cmd = Nothing db.Close() db = Nothing End Sub Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, _ ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles DataGrid1.ItemDataBound If e.Item.ItemIndex <> -1 Then e.Item.Cells(0).Text = e.Item.ItemIndex + 1 End If End Sub End Class

阅读:3138
录入:木鸟

评论 】 【 推荐 】 【 打印 】 上一篇:DataTable中数据记录的统计
下一篇:ASP.NET 2.0的一些新特性

在新浪搜索为DataGrid添加自动编号功能相关内容 相关新闻 本文评论 发表评论

网站简介 - 广告服务 - 网站地图 - 帮助信息 - 联系方式

Copyright © XmlAsp.Net Powered by Dvnews 星座分析 心理测试 星座其它 生肖运势
n655c12%252Easpx%26b%3D4%26user%3Dbaidu&screen=1024*768