gpt4 book ai didi

c# - SharePoint 2010 值不在预期范围内

转载 作者:行者123 更新时间:2023-12-05 00:29:03 28 4
gpt4 key购买 nike

在开发服务器上一切正常,但部署后有一个 ArgumentException: Value does not fall within the expected range.不幸的是,没有办法直接调试失败的 Web 部件,所以我只有一些日志信息(例如上面的异常消息和下面显示的代码部分)。
这是抛出异常的代码:

using (SPSite site = new SPSite("http://mysite"))
{
using (SPWeb web = site.OpenWeb())
{
SPList list = web.Lists.TryGetList("MySPList");
foreach (SPListItem item in list.Items)
{
if (item["Code"].ToString() == code)
{
if (item["Favorites"] != null)
{
if (item["Favorites"].ToString().Contains(web.CurrentUser.ID + ";#" + web.CurrentUser.Name))
{
// first case simple code
}
else
{
// second case simple code
}
}
else
{
// second case simple code
}
break;
}
}
}
}

最佳答案

问题出在 ListView 查找阈值 范围:

  • 登录 行政中心 .
  • 部分应用管理点击 管理 Web 应用程序 .
  • 选择所需的 Web 应用程序。
  • 在上面的功能区中单击 常规设置 并选择 资源限制 从下拉菜单。
  • 找到 ListView 查找阈值 并更改它的值(在我的情况下从 8 到 10)。
  • 关于c# - SharePoint 2010 值不在预期范围内,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17875571/

    28 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com