每当我在特定页面(例如第 6 页)并从“每页结果”下拉列表中选择(例如从 20 到 50)时,总页数将从(例如 9 到 3)更改。
然而!我当前所在的特定页面(第 6 页)超出了总页面的范围(例如,总页面 = 3,我的当前页面 = 6)。然后它不会显示任何内容,我必须向后单击按钮才能到达新的每页结果列表的最后一页。
我创建了一个代码来指定 Session["curr_page"] 在发生这种情况时应该在哪里。但是,我无法确定将这段代码放在哪里,因为每当我更改每页的结果下拉列表时它都不会触发。这是我制作的代码。
if (Convert.ToInt16(Session["curr_page"]) > Convert.ToInt16(Session["total_page"]))
{
Session["curr_page"] = Session["total_page"];
}
这是示例源代码。
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
LoadPageSizer();
LeadStatusDDL();
Session["curr_page"] = 1;
BindAndPage();
}
OnPageLoad();
}
private void BindAndPage()
{
rptLeadsPager.DataSource = ListLeads(ddlLStatus.Text.ToString(), Convert.ToInt16(Session["curr_page"]), Convert.ToInt16(ddlPageSize.Text));
rptLeadsPager.DataBind();
BuildPagination(Convert.ToInt16(Session["total_page"]), Convert.ToInt16(Session["curr_page"]), 10);
}
private void OnPageLoad()
{
rptLeadsPager.DataSource = ListLeads(ddlLStatus.Text.ToString(), Convert.ToInt16(Session["curr_page"]), Convert.ToInt16(ddlPageSize.Text));
rptLeadsPager.DataBind();
BuildPagination(Convert.ToInt16(Session["total_page"]), Convert.ToInt16(Session["curr_page"]), 10);
}
#region SQL Stored Procedure
private DataTable ListLeads(string leadStatus, int pageNumber, int pageSize)
{
int searchResultsCount;
DataSet dsSearchResults;
using (SqlConnection sqlConnection = new SqlConnection(ConfigurationManager.AppSettings["sqlConnection"]))
{
using (var sqlCommand = new SqlCommand("LeadsPager", sqlConnection))
{
sqlCommand.CommandType = CommandType.StoredProcedure;
//add parameters
sqlCommand.Parameters.AddWithValue("@LeadsStatus", leadStatus);
sqlCommand.Parameters.AddWithValue("@PageNumber", pageNumber);
sqlCommand.Parameters.AddWithValue("@ResultsPerPage", pageSize);
var resultsCountParam = new SqlParameter("@SearchResultsCount", SqlDbType.Int);
resultsCountParam.Direction = ParameterDirection.Output;
sqlCommand.Parameters.Add(resultsCountParam);
using (var sqlDataAdapter = new SqlDataAdapter(sqlCommand))
{
dsSearchResults = new DataSet();
sqlDataAdapter.Fill(dsSearchResults);
searchResultsCount = int.Parse(resultsCountParam.Value.ToString());
}
}
}
if (searchResultsCount == 0)
{
ResultHeader.Visible = false;
ResultFooter.Visible = false;
}
else
{
Session["total_page"] = GetTotalPage(pageSize, searchResultsCount);
lblTotalPage.Text = Session["total_page"].ToString();
ResultHeader.Visible = true;
ResultFooter.Visible = true;
}
RenderToolbar();
if (dsSearchResults.Tables.Count > 0)
return dsSearchResults.Tables[0];
else
return null;
}
#endregion
谢谢你。