分享
 
 
 

创建固定表头、表格体滚动的DataGrid

王朝other·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

在使用DataGrid时,有时候需要表头表头固定、表格体的内容可以滚动,下面的代码就是实现这个功能的代码。

ShowFixedHeader.ASPx

<%@ Page Language="<a href="http://dev.21tx.com/language/vb/" target="_blank">VB</a>" EnableViewState="False" AutoEventWireup="false" Codebehind="ShowFixedHeader.aspx.vb"

Inherits="aspx<a href="http://dev.21tx.com/web/" target="_blank">Web</a>.mengxianhui.com.ShowFixedHeader"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML>

<HEAD>

<title id="lucky_elove" runat="server"></title>

<meta name="GENERATOR" content="Microsoft Visual Studio<a href="http://dev.21tx.com/dotnet/" target="_blank">.net</a> 7.0">

<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">

<meta name="vs_defaultClientScript" content="<a href="http://dev.21tx.com/web/javascript/" target="_blank">JavaScript</a>">

<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">

</HEAD>

<body MS_POSITIONING="GridLayout" leftmargin="0">

<table align="center">

<tr>

<td>

<form id="Form1" method="post" runat="server">

<TABLE id="Table1" runat="server" cellSpacing="1" cellPadding="2" width="720" border="1"

bgcolor="#cc6633" bordercolor="#cc9966" style="FONT-SIZE:9pt;BORDER-BOTTOM:0px">

<TR align="center">

<TD colspan="2" width="430"></TD>

<TD width="190" colspan="2"></TD>

</TR>

<TR align="center">

<TD width="360" bgcolor="#66cc99"></TD>

<TD width="180" bgcolor="white"></TD>

<TD width="140" bgcolor="#99cccc"></TD>

<TD width="40" bgcolor="#009999"></TD>

</TR>

</TABLE>

<div style="BORDER:0px;PADDING:0px;MARGIN:0px;OVERFLOW:auto;WIDTH:736px;HEIGHT:200px">

<asp:DataGrid id="DataGrid1" width="720px" CellPadding="2" CellSpacing="1"

BorderColor="#cc9966" Font-Size="9pt" AlternatingItemStyle-BackColor="#6699ff"

runat="server" ShowHeader="False" AutoGenerateColumns="False">

<Columns>

<asp:BoundColumn DataField="Title">

<ItemStyle Width="360px"></ItemStyle>

</asp:BoundColumn>

<asp:BoundColumn DataField="CreateDate">

<ItemStyle Width="180px" HorizontalAlign="Center"></ItemStyle>

</asp:BoundColumn>

<asp:BoundColumn DataField="pid">

<ItemStyle Width="140px" HorizontalAlign="Center"></ItemStyle>

</asp:BoundColumn>

<asp:BoundColumn DataField="HitCount">

<ItemStyle Width="40px" HorizontalAlign="Center"></ItemStyle>

</asp:BoundColumn>

</Columns>

</asp:DataGrid>

</div>

</form>

</td>

</tr>

</table>

</body>

</HTML>

ShowFixedHeader.aspx.vb

Imports System

Imports System.Data

Imports System.Data.OleDb

Public Class ShowFixedHeader

Inherits System.Web.UI.Page

Protected WithEvents Table1 As System.Web.UI.HtmlControls.HtmlTable

Protected WithEvents DataGrid1 As System.Web.UI.WebControls.DataGrid

Protected WithEvents Form1 As System.Web.UI.HtmlControls.HtmlForm

Protected WithEvents lucky_elove As HtmlControls.HtmlGenericControl

#Region " Web Form Designer Generated Code "

'This call is required by the Web Form Designer.

<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()

End Sub

Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init

'CODEGEN: This method call is required by the Web Form Designer

'Do not modify it using the code editor.

InitializeComponent()

End Sub

#End Region

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

lucky_elove.InnerText = "【孟宪会之精彩世界】 - 跨栏表头的实现"

Table1.Rows(0).Cells(0).InnerText = "【孟宪会之精彩世界】.NET版本之最新文章"

Table1.Rows(0).Cells(1).InnerText = "文章信息"

Table1.Rows(1).Cells(0).InnerText = "文章标题"

Table1.Rows(1).Cells(1).InnerText = "发布时间"

Table1.Rows(1).Cells(2).InnerText = "所属栏目"

Table1.Rows(1).Cells(3).InnerText = "点击率"

Table1.Rows(0).Style.Add("color", "white")

Table1.Rows(0).Style.Add("font-weight", "bold")

Table1.Rows(0).Cells(0).Attributes.Add("onclick",_

"window.open('http://lucky_elove.www1.dotnetplayground.com/')")

Table1.Rows(0).Cells(0).Style.Add("cursor", "hand")

Try

Dim cnString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="_

+ Server.MapPath("Test.mdb")

Dim cn As New OleDbConnection(cnString)

cn.Open()

Dim strSQL As String = "SELECT TOP 30 D.Title,D.CreateDate,S.Title as pid,D.HitCount "_

+ "FROM Document D INNER JOIN Subject S ON D.pid = S.id ORDER BY CreateDate DESC"

Dim cmd As New OleDbCommand(strSQL, cn)

DataGrid1.DataSource = cmd.ExecuteReader

DataGrid1.DataBind()

cn.Close()

cn = Nothing

Catch eOle As OleDbException

Response.Write("产生错误:" + eOle.Message)

End Try

End Sub

Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, _

ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles DataGrid1.ItemDataBound

If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then

If e.Item.Cells(0).Text.Length > 26 Then

e.Item.Cells(0).Attributes.Add("Title", e.Item.Cells(0).Text)

e.Item.Cells(0).Text = e.Item.Cells(0).Text.Substring(0, 26) + "…"

End If

e.Item.Cells(1).Text = Format(System.Convert.ToDateTime(e.Item.Cells(1).Text),_

"yyyy年M月d日 h点m分s秒")

End If

End Sub

End Class

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有