分享
 
 
 

DataGrid+存储过程的分页编辑代码

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

<%@ Import Namespace="System.Data.SqlClient" %>

<%@ Import Namespace="System.Data" %>

<Script Runat="Server">

Dim conNorthwind As SqlConnection

Dim strSql As String

Dim strSelect As String

Dim intStartIndex As Integer

Dim intEndIndex As Integer

Dim intRecordCount As Integer

Dim cmdSql As SqlCommand

Sub Page_Load

btnFirst.Text = "首页"

btnPrev.Text = "上一页"

btnNext.Text = "下一页"

btnLast.Text = "末页"

conNorthwind = New SqlConnection( "Server=192.168.4.1;UID=sa;PWD=111111;Database=yourDBname" )

If Not IsPostBack Then

BindDataGrid

End If

End Sub

Sub BindDataGrid

Dim cmdSelect As SqlCommand

Dim dtrRecordCount As SqlDataReader

intEndIndex = dgrdProducts.PageSize

cmdSelect = New SqlCommand( "newsPaged", conNorthwind )

cmdSelect.CommandType = CommandType.StoredProcedure

cmdSelect.Parameters.Add( "@PageIndex", intStartIndex )

cmdSelect.Parameters.Add( "@PageSize ", intEndIndex )

conNorthwind.Open()

dtrRecordCount = cmdSelect.ExecuteReader()

While dtrRecordCount.read()

intRecordCount=dtrRecordCount(0)

End While

dgrdProducts.VirtualItemCount = (intRecordCount / dgrdProducts.PageSize)

dtrRecordCount.NextResult()

dgrdProducts.DataSource = dtrRecordCount

dgrdProducts.DataBind()

conNorthwind.Close()

End Sub

Sub dgrdProducts_PageIndexChanged( s As Object, e As DataGridPageChangedEventArgs )

intStartIndex = e.NewPageIndex

dgrdProducts.CurrentPageIndex = e.NewPageIndex

BindDataGrid

End Sub

Sub PagerButtonClick(ByVal sender As Object, ByVal e As EventArgs)

Dim arg As String = sender.CommandArgument

Select Case arg

Case "next"

If (dgrdProducts.CurrentPageIndex < (dgrdProducts.PageCount - 1)) Then

dgrdProducts.CurrentPageIndex += 1

End If

Case "prev"

If (dgrdProducts.CurrentPageIndex > 0) Then

dgrdProducts.CurrentPageIndex -= 1

End If

Case "last"

dgrdProducts.CurrentPageIndex = (dgrdProducts.PageCount - 1)

Case Else

'page number

dgrdProducts.CurrentPageIndex = System.Convert.ToInt32(arg)

End Select

intStartIndex=dgrdProducts.CurrentPageIndex

BindDataGrid

End Sub

Sub dgrdProducts_EditCommand( s As Object, e As DataGridCommandEventArgs )

dgrdProducts.EditItemIndex = e.Item.ItemIndex

intStartIndex = dgrdProducts.CurrentPageIndex

BindDataGrid

End Sub

Sub dgrdProducts_UpdateCommand( s As Object, e As DataGridCommandEventArgs )

Dim intArticleID As Integer

Dim txtTopic As TextBox

Dim txtEditor As TextBox

Dim strTopic As String

Dim strEditor As String

intArticleID = dgrdProducts.DataKeys( e.Item.ItemIndex )

txtTopic = e.Item.Cells( 1 ).Controls( 0 )

txtEditor = e.Item.Cells( 2 ).Controls( 0 )

strTopic = txtTopic.Text

strEditor = txtEditor.Text

strSql = "Update Tb_Article Set Topic=@Topic, " _

& "Editor=@Editor Where ArticleID=@ArticleID"

cmdSql = New SqlCommand( strSql, conNorthwind )

cmdSql.Parameters.Add( "@Topic", strTopic )

cmdSql.Parameters.Add( "@Editor", strEditor )

cmdSql.Parameters.Add( "@ArticleID", intArticleID )

conNorthwind.Open()

cmdSql.ExecuteNonQuery()

conNorthwind.Close()

dgrdProducts.EditItemIndex = -1

BindDataGrid

End Sub

Sub dgrdProducts_CancelCommand( s As Object, e As DataGridCommandEventArgs )

dgrdProducts.EditItemIndex = -1

BindDataGrid

End Sub

</Script>

<html>

<head><title>DataGridCustomPaging.aspx</title></head>

<body>

<form Runat="Server">

<asp:DataGrid Runat="Server"

ID="dgrdProducts"

OnEditCommand="dgrdProducts_EditCommand"

OnUpdateCommand="dgrdProducts_UpdateCommand"

OnCancelCommand="dgrdProducts_CancelCommand"

DataKeyField="A_ArticleID"

AutoGenerateColumns="false"

showheader="true"

AllowPaging="True"

AllowCustomPaging="True"

HeaderStyle-BackColor="Salmon"

PageSize="10"

OnPageIndexChanged="dgrdProducts_PageIndexChanged"

PagerStyle-Mode="NumericPages"

AlternatingItemStyle-BackColor="#eeaaee"

Font-Size="10pt"

Font-Name="Verdana"

CellSpacing="0"

CellPadding="3"

GridLines="Both"

BorderWidth="1"

BorderColor="black"

PagerStyle-HorizontalAlign="Right">

<AlternatingItemStyle BackColor="#EEEEEE"></AlternatingItemStyle>

<Columns>

<asp:BoundColumn

HeaderText="序列号"

DataField="ArticleID"

ReadOnly="True" />

<asp:BoundColumn

HeaderText="标题"

DataField="Topic" />

<asp:BoundColumn

HeaderText="编辑者"

DataField="Editor" />

<asp:EditCommandColumn

EditText="Edit!"

UpdateText="Update!"

CancelText="Cancel!" />

<asp:HyperLinkColumn

HeaderText="编辑"

DataNavigateUrlField="ArticleID"

DataNavigateUrlFormatString="Details.aspx?id={0}"

Text="编辑"/>

</columns>

</asp:datagrid>

<asp:linkbutton id="btnFirst" onclick="PagerButtonClick" runat="server" Font-Name="verdana" Font-size="8pt" ForeColor="navy" CommandArgument="0"></asp:linkbutton>&nbsp;

<asp:linkbutton id="btnPrev" onclick="PagerButtonClick" runat="server" Font-Name="verdana" Font-size="8pt" ForeColor="navy" CommandArgument="prev"></asp:linkbutton>&nbsp;

<asp:linkbutton id="btnNext" onclick="PagerButtonClick" runat="server" Font-Name="verdana" Font-size="8pt" ForeColor="navy" CommandArgument="next"></asp:linkbutton>&nbsp;

<asp:linkbutton id="btnLast" onclick="PagerButtonClick" runat="server" Font-Name="verdana" Font-size="8pt" ForeColor="navy" CommandArgument="last"></asp:linkbutton>

</form>

</html>

下面是存储过程:

CREATE PROCEDURE newsPaged

(

@PageIndex int,

@PageSize int

)

AS

BEGIN

DECLARE @PageLowerBound int

DECLARE @PageUpperBound int

DECLARE @RowsToReturn int

-- First set the rowcount

SET @RowsToReturn = @PageSize * (@PageIndex + 1)

SET ROWCOUNT @RowsToReturn

-- Set the page bounds

SET @PageLowerBou

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
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- 王朝網路 版權所有