我对以下代码有疑问
e.TotalRows = data.Count(); //getting exception
Jqgrid1.DataSource = data.Skip((e.NewPageIndex - 1) * Jqgrid1.PagerSettings.PageSize).Take(Jqgrid1.PagerSettings.PageSize);
Jqgrid1.DataBind();
浏览器上的错误描述是
The full-text query parameter for Fulltext Query String is not valid.
描述:
An unhandled exception occurred during the execution of the current web request.
Please review the stack trace for more information about the error and where it
originated in the code.
异常详情:
System.Data.SqlClient.SqlException:
The full-text query parameter for Fulltext Query String is not valid.
我正在使用.Net 4
.
我的连接字符串很好,因为我可以以管理员身份登录并查看其他页面。
有谁知道如何在 asp.net 中实现这一点?