有趣,我觉得有点棘手,但是,嘿,我敢肯定有人已经面对并找到了解决该问题的方法。
无论如何,要求很简单,但解决方案不是。
我正在使用带有 EF 数据源的标准 ASP.Net Listview 控件。我的列表视图中有大量记录,因此使用了 Asp.Net 寻呼机。我在我的页面上放置了一个带有搜索按钮的文本框,我希望能够跳转到搜索框中指定的记录所在的页面。在我的案例中,记录是我的 EF Modal 中的一个属性。在我在页面上使用的代码下方
protected void JumptoRecordPostToServer_Click(object sender, EventArgs e)
{
int pagenrofjumptorecord = InspectionsBusinessObject.GetPageNumberforJumptoRecord(currentusername.Value, pid, DataPager1.PageSize, recordtoFind, Common.Util.GetUserRole());
this.Response.Redirect(string.Format("/foo.aspx?SelectedPage=", pagenrofjumptorecord.ToString()));
}
GetPageNumberforJumptoRecord 方法有几个参数与这个问题并不真正相关,但这里是该方法的代码
public static int GetPageNumberforJumptoRecord(string UserName,Guid ProjectID,int ItemsPerPage,int SiteNumber,UserRoles CurrentRole)
{
using (MyEFEntity context = new MyEFEntity())
{
try
{
//allsites = integer
int[] allsites = context.INSPECTIONS.Where(z => z.ProjectID.Equals(ProjectID)).Select(z => z.HouseSiteNo).ToArray();
Array.Sort(allsites);
int sitetoSearchforIndex = Array.IndexOf(allsites, SiteNumber);
int totalNrofItems = allsites.Length;
if (sitetoSearchforIndex != -1)
{
int nrofPages = totalNrofItems / ItemsPerPage; // <------- I guess my alghorithm here is wrong
return (sitetoSearchforIndex * nrofPages) / totalNrofItems; // <------- I guess my alghorithm here is wrong
}
}
catch {}
return -1;
}
}