ASP.NET中的自定义分页问题

时间:2010-02-19 11:52:47

标签: asp.net objectdatasource data-access-layer custompaging custom-paging

我正在尝试使用ObjectDataSource分页向我的网站添加自定义分页。我相信我已经正确添加了我需要的存储过程,并通过DAL和BLL将它们提升了。我遇到的问题是,当我尝试在页面上使用它时,我得到一个空数据网格。

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PageTest.aspx.cs" Inherits="developer_PageTest" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>

</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:ObjectDataSource ID="ObjectDataSource1" SelectMethod="GetMessagesPaged" EnablePaging="true"
            SelectCountMethod="GetMessagesCount" TypeName="MessageTable" runat="server" >
            <SelectParameters>
                <asp:Parameter Name="DeviceID" Type="Int32" DefaultValue="112" />
                <asp:Parameter Name="StartDate" Type="DateTime" DefaultValue="" ConvertEmptyStringToNull="true"/>
                <asp:Parameter Name="EndDate" Type="DateTime" DefaultValue="" ConvertEmptyStringToNull="true"/>
                <asp:Parameter Name="BasicMatch" Type="Boolean" ConvertEmptyStringToNull="true" DefaultValue="" />
                <asp:Parameter Name="ContainsPosition" Type="Boolean" ConvertEmptyStringToNull="true" DefaultValue="" />
                <asp:Parameter Name="Decoded" Type="Boolean" ConvertEmptyStringToNull="true" DefaultValue="" />
<%--                <asp:Parameter Name="StartRowIndex" Type="Int32" DefaultValue="10" />
                <asp:Parameter Name="MaximumRows" Type="Int32" DefaultValue="10" />
--%>            </SelectParameters>    
        </asp:ObjectDataSource>        

        <asp:GridView ID="GridView1" runat="server" DataSourceID="ObjectDataSource1" AllowPaging="true" PageSize="10"></asp:GridView>
        <br />

        <asp:Label runat="server" ID="lblCount"></asp:Label>

    </div>
    </form>
</body>
</html>

当我在ODS上将EnablePaging设置为false,并在标记中添加注释掉的StartRowIndex和MaximumRows参数时,我得到数据,因此看起来数据层的行为似乎应该如此。代码文件中有代码将GetMessagesCount调用的值放在lblCount中,并且总是有一个合理的值。

我尝试打破BLL并逐步完成,后端被调用,它返回的是正确的信息和数据,但不知何故,它在ODS和GridView之间消失了。

我创建了一个模拟数据源,返回编号的随机数行并将其附加到此表单,自定义分页工作,所以我认为我对该技术的理解是好的。我只是不明白为什么它在这里失败了!

任何帮助都非常感激。

(编辑......这是背后的代码)。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;

public partial class developer_PageTest : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        lblCount.Text = String.Format("Count = {0}", MessageTable.GetMessagesCount(112, null, null, null, null, null))       
    }
}

2 个答案:

答案 0 :(得分:0)

黑暗中的野蛮刺:如果将StartRowIndex DefaultValue设置为1,会发生什么?

<asp:Parameter Name="StartRowIndex" Type="Int32" DefaultValue="1" />
<asp:Parameter Name="MaximumRows" Type="Int32" DefaultValue="10" />

答案 1 :(得分:0)

你好Johncc我遇到了同样的问题,最后能够在上周五午夜解决罪魁祸首。天哪,这个问题给了我噩梦,我很高兴我修好了。解决方案很简单。

我的计数方法是撤回数据。但似乎有一些数据类型不匹配。如果我将计数硬编码为。

return 16

它会工作,但如果我将它绑定到一个int变量并返回它不会工作。 如果你硬编码为16,那么它是一个struct system.Int32数据类型,但如果你返回一个int变量,它只是一个Int32变量。我认为问题出在这里。

public int GetsrchCount(BeginDate,EndDate)
{
    int intrec;
    intrec = 23;
    return intrec; 
 }

经过长时间的搜索,幸运的是我发现了这个解决方案。我将count方法的返回类型更改为static int

public static int GetsrchCount(DateTime BeginDate, DateTime EndDate)
    {
        int intrec;
        intrec = 23;
        return intrec; 
     }

数据类型存在一些不匹配。它现在像微风一样